@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Style+Script&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/remixicon/4.1.0/remixicon.css");
@import "/ext/select2/css/select2.css";
@import "/ext/daterange/css/daterangepicker.css";
@import "/ext/tinymc/css/summernote.min.css";
:root {
  --bs-blue: #3B7DDD;
  --bs-indigo: #0a0a0a;
  --bs-purple: #6f42c1;
  --bs-pink: #e83e8c;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #fcb92c;
  --bs-green: #1cbb8c;
  --bs-teal: #20c997;
  --bs-cyan: #17a2b8;
  --bs-black: #000;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #3B7DDD;
  --bs-secondary: #6c757d;
  --bs-success: #1cbb8c;
  --bs-info: #17a2b8;
  --bs-warning: #fcb92c;
  --bs-danger: #dc3545;
  --bs-light: #f5f7fb;
  --bs-dark: #212529;
  --bs-primary-rgb: 59, 125, 221;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 28, 187, 140;
  --bs-info-rgb: 23, 162, 184;
  --bs-warning-rgb: 252, 185, 44;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 245, 247, 251;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 73, 80, 87;
  --bs-body-bg-rgb: 245, 247, 251;
  --bs-font-sans-serif: "Inter", "Helvetica Neue", Arial, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 0.875rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #495057;
  --bs-body-bg: #f5f7fb;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.2rem;
  --bs-border-radius-sm: 0.1rem;
  --bs-border-radius-lg: 0.3rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-2xl: 2rem;
  --bs-border-radius-pill: 50rem;
  --bs-link-color: #3B7DDD;
  --bs-link-hover-color: #2f64b1;
  --bs-code-color: #e83e8c;
  --bs-highlight-bg: #fef1d5;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: 1px solid;
  opacity: 0.25;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 400;
  line-height: 1.2;
  color: #000;
}

h1, .h1 {
  font-size: 1.75rem;
}

h2, .h2 {
  font-size: 1.53125rem;
}

h3, .h3 {
  font-size: 1.3125rem;
}

h4, .h4 {
  font-size: 1.09375rem;
}

h5, .h5 {
  font-size: 0.875rem;
}

h6, .h6 {
  font-size: 0.875rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title] {
  text-decoration: underline dotted;
  cursor: help;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 600;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small, .small {
  font-size: 80%;
}

mark, .mark {
  padding: 0.1875em;
  background-color: var(--bs-highlight-bg);
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: var(--bs-link-color);
  text-decoration: none;
}
a:hover {
  color: var(--bs-link-hover-color);
  text-decoration: underline;
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 80%;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 80%;
  color: var(--bs-code-color);
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 80%;
  color: var(--bs-body-bg);
  background-color: var(--bs-body-color);
  border-radius: 0.1rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  display: none !important;
}

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;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

.lead {
  font-size: 1.09375rem;
  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;
}

.display-5 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-6 {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.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: 80%;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.09375rem;
}
.blockquote > :last-child {
  margin-bottom: 0;
}

.blockquote-footer {
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: 80%;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "— ";
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #f5f7fb;
  border: 1px solid var(--bs-border-color);
  border-radius: 0.2rem;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 80%;
  color: #6c757d;
}

.container,
.container-fluid,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --bs-gutter-x: 0.75rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1200px;
  }
}
.row {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

.g-6,
.gx-6 {
  --bs-gutter-x: 4.5rem;
}

.g-6,
.gy-6 {
  --bs-gutter-y: 4.5rem;
}

.g-7,
.gx-7 {
  --bs-gutter-x: 6rem;
}

.g-7,
.gy-7 {
  --bs-gutter-y: 6rem;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
  .g-sm-6,
  .gx-sm-6 {
    --bs-gutter-x: 4.5rem;
  }
  .g-sm-6,
  .gy-sm-6 {
    --bs-gutter-y: 4.5rem;
  }
  .g-sm-7,
  .gx-sm-7 {
    --bs-gutter-x: 6rem;
  }
  .g-sm-7,
  .gy-sm-7 {
    --bs-gutter-y: 6rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
  .g-md-6,
  .gx-md-6 {
    --bs-gutter-x: 4.5rem;
  }
  .g-md-6,
  .gy-md-6 {
    --bs-gutter-y: 4.5rem;
  }
  .g-md-7,
  .gx-md-7 {
    --bs-gutter-x: 6rem;
  }
  .g-md-7,
  .gy-md-7 {
    --bs-gutter-y: 6rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
  .g-lg-6,
  .gx-lg-6 {
    --bs-gutter-x: 4.5rem;
  }
  .g-lg-6,
  .gy-lg-6 {
    --bs-gutter-y: 4.5rem;
  }
  .g-lg-7,
  .gx-lg-7 {
    --bs-gutter-x: 6rem;
  }
  .g-lg-7,
  .gy-lg-7 {
    --bs-gutter-y: 6rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
  .g-xl-6,
  .gx-xl-6 {
    --bs-gutter-x: 4.5rem;
  }
  .g-xl-6,
  .gy-xl-6 {
    --bs-gutter-y: 4.5rem;
  }
  .g-xl-7,
  .gx-xl-7 {
    --bs-gutter-x: 6rem;
  }
  .g-xl-7,
  .gy-xl-7 {
    --bs-gutter-y: 6rem;
  }
}
@media (min-width: 1440px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
  .g-xxl-6,
  .gx-xxl-6 {
    --bs-gutter-x: 4.5rem;
  }
  .g-xxl-6,
  .gy-xxl-6 {
    --bs-gutter-y: 4.5rem;
  }
  .g-xxl-7,
  .gx-xxl-7 {
    --bs-gutter-x: 6rem;
  }
  .g-xxl-7,
  .gy-xxl-7 {
    --bs-gutter-y: 6rem;
  }
}
.table {
  --bs-table-color: var(--bs-body-color);
  --bs-table-bg: transparent;
  --bs-table-border-color: var(--bs-border-color);
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: var(--bs-body-color);
  --bs-table-striped-bg: #f8f9fa;
  --bs-table-active-color: var(--bs-body-color);
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: var(--bs-body-color);
  --bs-table-hover-bg: rgba(0, 0, 0, 0.0375);
  width: 100%;
  margin-bottom: 1rem;
  color: var(--bs-table-color);
  vertical-align: top;
  border-color: var(--bs-table-border-color);
}
.table > :not(caption) > * > * {
  padding: 0.75rem 0.75rem;
  background-color: var(--bs-table-bg);
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}
.table > tbody {
  vertical-align: inherit;
}
.table > thead {
  vertical-align: bottom;
}

.table-group-divider {
  border-top: 2px solid currentcolor;
}

.caption-top {
  caption-side: top;
}

.table-sm > :not(caption) > * > * {
  padding: 0.3rem 0.3rem;
}

.table-bordered > :not(caption) > * {
  border-width: 1px 0;
}
.table-bordered > :not(caption) > * > * {
  border-width: 0 1px;
}

.table-borderless > :not(caption) > * > * {
  border-bottom-width: 0;
}
.table-borderless > :not(:first-child) {
  border-top-width: 0;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-accent-bg: var(--bs-table-striped-bg);
  color: var(--bs-table-striped-color);
}

.table-striped-columns > :not(caption) > tr > :nth-child(even) {
  --bs-table-accent-bg: var(--bs-table-striped-bg);
  color: var(--bs-table-striped-color);
}

.table-active {
  --bs-table-accent-bg: var(--bs-table-active-bg);
  color: var(--bs-table-active-color);
}

.table-hover > tbody > tr:hover > * {
  --bs-table-accent-bg: var(--bs-table-hover-bg);
  color: var(--bs-table-hover-color);
}

.table-primary {
  --bs-table-color: #000;
  --bs-table-bg: #d8e5f8;
  --bs-table-border-color: #c2cedf;
  --bs-table-striped-bg: #cddaec;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #c2cedf;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #c8d4e5;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-secondary {
  --bs-table-color: #000;
  --bs-table-bg: #e2e3e5;
  --bs-table-border-color: #cbccce;
  --bs-table-striped-bg: #d7d8da;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #cbccce;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #d1d2d4;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-success {
  --bs-table-color: #000;
  --bs-table-bg: #d2f1e8;
  --bs-table-border-color: #bdd9d1;
  --bs-table-striped-bg: #c8e5dc;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bdd9d1;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #c2dfd7;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-info {
  --bs-table-color: #000;
  --bs-table-bg: #d1ecf1;
  --bs-table-border-color: #bcd4d9;
  --bs-table-striped-bg: #c7e0e5;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bcd4d9;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #c1dadf;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-warning {
  --bs-table-color: #000;
  --bs-table-bg: #fef1d5;
  --bs-table-border-color: #e5d9c0;
  --bs-table-striped-bg: #f1e5ca;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e5d9c0;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #ebdfc5;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-danger {
  --bs-table-color: #000;
  --bs-table-bg: #f8d7da;
  --bs-table-border-color: #dfc2c4;
  --bs-table-striped-bg: #eccccf;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfc2c4;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5c7ca;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-light {
  --bs-table-color: #000;
  --bs-table-bg: #f5f7fb;
  --bs-table-border-color: #dddee2;
  --bs-table-striped-bg: #e9ebee;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dddee2;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e3e4e8;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-dark {
  --bs-table-color: #fff;
  --bs-table-bg: #212529;
  --bs-table-border-color: #373b3e;
  --bs-table-striped-bg: #2c3034;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #373b3e;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #323539;
  --bs-table-hover-color: #fff;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1439.98px) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.form-label {
  margin-bottom: 0.5rem;
}

.col-form-label {
  padding-top: calc(0.3rem + 1px);
  padding-bottom: calc(0.3rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.4rem + 1px);
  padding-bottom: calc(0.4rem + 1px);
  font-size: 0.925rem;
}

.col-form-label-sm {
  padding-top: calc(0.2rem + 1px);
  padding-bottom: calc(0.2rem + 1px);
  font-size: 0.75rem;
}

.form-text {
  margin-top: 0.25rem;
  font-size: 80%;
  color: #6c757d;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.3rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  appearance: none;
  border-radius: 0.2rem;
  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[type=file] {
  overflow: hidden;
}
.form-control[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #9dbeee;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(59, 125, 221, 0.25);
}
.form-control::-webkit-date-and-time-value {
  height: 1.5em;
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled {
  background-color: #e9ecef;
  opacity: 1;
}
.form-control::file-selector-button {
  padding: 0.3rem 0.85rem;
  margin: -0.3rem -0.85rem;
  margin-inline-end: 0.85rem;
  color: #495057;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  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) {
  .form-control::file-selector-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: #dde0e3;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.3rem 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: #495057;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext:focus {
  outline: 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  min-height: calc(1.525rem + 2px);
  padding: 0.2rem 0.5rem;
  font-size: 0.75rem;
  border-radius: 0.1rem;
}
.form-control-sm::file-selector-button {
  padding: 0.2rem 0.5rem;
  margin: -0.2rem -0.5rem;
  margin-inline-end: 0.5rem;
}

.form-control-lg {
  min-height: calc(2.1875rem + 2px);
  padding: 0.4rem 1rem;
  font-size: 0.925rem;
  border-radius: 0.3rem;
}
.form-control-lg::file-selector-button {
  padding: 0.4rem 1rem;
  margin: -0.4rem -1rem;
  margin-inline-end: 1rem;
}

textarea.form-control {
  min-height: calc(1.9125rem + 2px);
}
textarea.form-control-sm {
  min-height: calc(1.525rem + 2px);
}
textarea.form-control-lg {
  min-height: calc(2.1875rem + 2px);
}

.form-control-color {
  width: 3rem;
  height: calc(1.9125rem + 2px);
  padding: 0.3rem;
}
.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control-color::-moz-color-swatch {
  border: 0 !important;
  border-radius: 0.2rem;
}
.form-control-color::-webkit-color-swatch {
  border-radius: 0.2rem;
}
.form-control-color.form-control-sm {
  height: calc(1.525rem + 2px);
}
.form-control-color.form-control-lg {
  height: calc(2.1875rem + 2px);
}

.form-select {
  display: block;
  width: 100%;
  padding: 0.3rem 2.55rem 0.3rem 0.85rem;
  -moz-padding-start: calc(0.85rem - 3px);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 16px 12px;
  border: 1px solid #ced4da;
  border-radius: 0.2rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-select {
    transition: none;
  }
}
.form-select:focus {
  border-color: #9dbeee;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(59, 125, 221, 0.25);
}
.form-select[multiple], .form-select[size]:not([size="1"]) {
  padding-right: 0.85rem;
  background-image: none;
}
.form-select:disabled {
  background-color: #e9ecef;
}
.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

.form-select-sm {
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  padding-left: 0.5rem;
  font-size: 0.75rem;
  border-radius: 0.1rem;
}

.form-select-lg {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  font-size: 0.925rem;
  border-radius: 0.3rem;
}

.form-check {
  display: block;
  min-height: 1.3125rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}
.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}

.form-check-reverse {
  padding-right: 1.5em;
  padding-left: 0;
  text-align: right;
}
.form-check-reverse .form-check-input {
  float: right;
  margin-right: -1.5em;
  margin-left: 0;
}

.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  appearance: none;
  print-color-adjust: exact;
}
.form-check-input[type=checkbox] {
  border-radius: 0.25em;
}
.form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check-input:active {
  filter: brightness(90%);
}
.form-check-input:focus {
  border-color: #9dbeee;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(59, 125, 221, 0.25);
}
.form-check-input:checked {
  background-color: #3B7DDD;
  border-color: #3B7DDD;
}
.form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
.form-check-input:checked[type=radio] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check-input[type=checkbox]:indeterminate {
  background-color: #3B7DDD;
  border-color: #3B7DDD;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  cursor: default;
  opacity: 0.5;
}

.form-switch {
  padding-left: 2.5em;
}
.form-switch .form-check-input {
  width: 2em;
  margin-left: -2.5em;
  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='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 2em;
  transition: background-position 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-switch .form-check-input {
    transition: none;
  }
}
.form-switch .form-check-input:focus {
  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='%239dbeee'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
  background-position: right center;
  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");
}
.form-switch.form-check-reverse {
  padding-right: 2.5em;
  padding-left: 0;
}
.form-switch.form-check-reverse .form-check-input {
  margin-right: -2.5em;
  margin-left: 0;
}

.form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}

.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.btn-check[disabled] + .btn, .btn-check:disabled + .btn {
  pointer-events: none;
  filter: none;
  opacity: 0.65;
}

.form-range {
  width: 100%;
  height: 1.4rem;
  padding: 0;
  background-color: transparent;
  appearance: none;
}
.form-range:focus {
  outline: 0;
}
.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #f5f7fb, 0 0 0 0.2rem rgba(59, 125, 221, 0.25);
}
.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #f5f7fb, 0 0 0 0.2rem rgba(59, 125, 221, 0.25);
}
.form-range::-moz-focus-outer {
  border: 0;
}
.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #3B7DDD;
  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) {
  .form-range::-webkit-slider-thumb {
    transition: none;
  }
}
.form-range::-webkit-slider-thumb:active {
  background-color: #c4d8f5;
}
.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #3B7DDD;
  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) {
  .form-range::-moz-range-thumb {
    transition: none;
  }
}
.form-range::-moz-range-thumb:active {
  background-color: #c4d8f5;
}
.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range:disabled {
  pointer-events: none;
}
.form-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}
.form-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}

.form-floating {
  position: relative;
}
.form-floating > .form-control,
.form-floating > .form-control-plaintext,
.form-floating > .form-select {
  height: calc(3.5rem + 2px);
  line-height: 1.25;
}
.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1rem 0.85rem;
  overflow: hidden;
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-floating > label {
    transition: none;
  }
}
.form-floating > .form-control,
.form-floating > .form-control-plaintext {
  padding: 1rem 0.85rem;
}
.form-floating > .form-control::placeholder,
.form-floating > .form-control-plaintext::placeholder {
  color: transparent;
}
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown),
.form-floating > .form-control-plaintext:focus,
.form-floating > .form-control-plaintext:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:-webkit-autofill,
.form-floating > .form-control-plaintext:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-control-plaintext ~ label,
.form-floating > .form-select ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:-webkit-autofill ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control-plaintext ~ label {
  border-width: 1px 0;
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-select,
.input-group > .form-floating {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
.input-group > .form-control:focus,
.input-group > .form-select:focus,
.input-group > .form-floating:focus-within {
  z-index: 5;
}
.input-group .btn {
  position: relative;
  z-index: 2;
}
.input-group .btn:focus {
  z-index: 5;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.3rem 0.85rem;
  font-size: 0.875rem;
  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.2rem;
}

.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn {
  padding: 0.4rem 1rem;
  font-size: 0.925rem;
  border-radius: 0.3rem;
}

.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn {
  padding: 0.2rem 0.5rem;
  font-size: 0.75rem;
  border-radius: 0.1rem;
}

.input-group-lg > .form-select,
.input-group-sm > .form-select {
  padding-right: 3.4rem;
}

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3),
.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control,
.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4),
.input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-control,
.input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group > .form-floating:not(:first-child) > .form-control,
.input-group > .form-floating:not(:first-child) > .form-select {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #1cbb8c;
}

.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.75rem;
  color: #000;
  background-color: rgba(28, 187, 140, 0.9);
  border-radius: 0.2rem;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #1cbb8c;
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #1cbb8c;
  box-shadow: 0 0 0 0.2rem rgba(28, 187, 140, 0.25);
}

.was-validated .form-select:valid, .form-select.is-valid {
  border-color: #1cbb8c;
}
.was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  border-color: #1cbb8c;
  box-shadow: 0 0 0 0.2rem rgba(28, 187, 140, 0.25);
}

.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: #1cbb8c;
}
.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  background-color: #1cbb8c;
}
.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  box-shadow: 0 0 0 0.2rem rgba(28, 187, 140, 0.25);
}
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #1cbb8c;
}

.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group > .form-control:not(:focus):valid, .input-group > .form-control:not(:focus).is-valid,
.was-validated .input-group > .form-select:not(:focus):valid,
.input-group > .form-select:not(:focus).is-valid,
.was-validated .input-group > .form-floating:not(:focus-within):valid,
.input-group > .form-floating:not(:focus-within).is-valid {
  z-index: 3;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #dc3545;
}

.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.75rem;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.2rem;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #dc3545;
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-select:invalid, .form-select.is-invalid {
  border-color: #dc3545;
}
.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: #dc3545;
}
.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  background-color: #dc3545;
}
.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}

.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group > .form-control:not(:focus):invalid, .input-group > .form-control:not(:focus).is-invalid,
.was-validated .input-group > .form-select:not(:focus):invalid,
.input-group > .form-select:not(:focus).is-invalid,
.was-validated .input-group > .form-floating:not(:focus-within):invalid,
.input-group > .form-floating:not(:focus-within).is-invalid {
  z-index: 4;
}

.btn {
  --bs-btn-padding-x: 0.85rem;
  --bs-btn-padding-y: 0.3rem;
  --bs-btn-font-family: ;
  --bs-btn-font-size: 0.875rem;
  --bs-btn-font-weight: 400;
  --bs-btn-line-height: 1.5;
  --bs-btn-color: #495057;
  --bs-btn-bg: transparent;
  --bs-btn-border-width: 1px;
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: 0.2rem;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  --bs-btn-disabled-opacity: 0.65;
  --bs-btn-focus-box-shadow: 0 0 0 0.2rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
  display: inline-block;
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: var(--bs-btn-color);
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
  background-color: var(--bs-btn-bg);
  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: var(--bs-btn-hover-color);
  text-decoration: none;
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}
.btn-check + .btn:hover {
  color: var(--bs-btn-color);
  background-color: var(--bs-btn-bg);
  border-color: var(--bs-btn-border-color);
}
.btn:focus-visible {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn-check:focus-visible + .btn {
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show {
  color: var(--bs-btn-active-color);
  background-color: var(--bs-btn-active-bg);
  border-color: var(--bs-btn-active-border-color);
}
.btn-check:checked + .btn:focus-visible, :not(.btn-check) + .btn:active:focus-visible, .btn:first-child:active:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible {
  box-shadow: var(--bs-btn-focus-box-shadow);
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #3B7DDD;
  --bs-btn-border-color: #3B7DDD;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #326abc;
  --bs-btn-hover-border-color: #2f64b1;
  --bs-btn-focus-shadow-rgb: 88, 145, 226;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #2f64b1;
  --bs-btn-active-border-color: #2c5ea6;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #3B7DDD;
  --bs-btn-disabled-border-color: #3B7DDD;
}

.btn-secondary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #6c757d;
  --bs-btn-border-color: #6c757d;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #5c636a;
  --bs-btn-hover-border-color: #565e64;
  --bs-btn-focus-shadow-rgb: 130, 138, 145;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #565e64;
  --bs-btn-active-border-color: #51585e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #6c757d;
  --bs-btn-disabled-border-color: #6c757d;
}

.btn-success {
  --bs-btn-color: #000;
  --bs-btn-bg: #1cbb8c;
  --bs-btn-border-color: #1cbb8c;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #3ec59d;
  --bs-btn-hover-border-color: #33c298;
  --bs-btn-focus-shadow-rgb: 24, 159, 119;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #49c9a3;
  --bs-btn-active-border-color: #33c298;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #1cbb8c;
  --bs-btn-disabled-border-color: #1cbb8c;
}

.btn-info {
  --bs-btn-color: #fff;
  --bs-btn-bg: #17a2b8;
  --bs-btn-border-color: #17a2b8;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #148a9c;
  --bs-btn-hover-border-color: #128293;
  --bs-btn-focus-shadow-rgb: 58, 176, 195;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #128293;
  --bs-btn-active-border-color: #117a8a;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #17a2b8;
  --bs-btn-disabled-border-color: #17a2b8;
}

.btn-warning {
  --bs-btn-color: #000;
  --bs-btn-bg: #fcb92c;
  --bs-btn-border-color: #fcb92c;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #fcc44c;
  --bs-btn-hover-border-color: #fcc041;
  --bs-btn-focus-shadow-rgb: 214, 157, 37;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #fdc756;
  --bs-btn-active-border-color: #fcc041;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #fcb92c;
  --bs-btn-disabled-border-color: #fcb92c;
}

.btn-danger {
  --bs-btn-color: #fff;
  --bs-btn-bg: #dc3545;
  --bs-btn-border-color: #dc3545;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #bb2d3b;
  --bs-btn-hover-border-color: #b02a37;
  --bs-btn-focus-shadow-rgb: 225, 83, 97;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #b02a37;
  --bs-btn-active-border-color: #a52834;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #dc3545;
  --bs-btn-disabled-border-color: #dc3545;
}

.btn-light {
  --bs-btn-color: #000;
  --bs-btn-bg: #f5f7fb;
  --bs-btn-border-color: #f5f7fb;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #d0d2d5;
  --bs-btn-hover-border-color: #c4c6c9;
  --bs-btn-focus-shadow-rgb: 208, 210, 213;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #c4c6c9;
  --bs-btn-active-border-color: #b8b9bc;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #f5f7fb;
  --bs-btn-disabled-border-color: #f5f7fb;
}

.btn-dark {
  --bs-btn-color: #fff;
  --bs-btn-bg: #212529;
  --bs-btn-border-color: #212529;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #424649;
  --bs-btn-hover-border-color: #373b3e;
  --bs-btn-focus-shadow-rgb: 66, 70, 73;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #4d5154;
  --bs-btn-active-border-color: #373b3e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #212529;
  --bs-btn-disabled-border-color: #212529;
}

.btn-outline-primary {
  --bs-btn-color: #3B7DDD;
  --bs-btn-border-color: #3B7DDD;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #3B7DDD;
  --bs-btn-hover-border-color: #3B7DDD;
  --bs-btn-focus-shadow-rgb: 59, 125, 221;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #3B7DDD;
  --bs-btn-active-border-color: #3B7DDD;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #3B7DDD;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #3B7DDD;
  --bs-gradient: none;
}

.btn-outline-secondary {
  --bs-btn-color: #6c757d;
  --bs-btn-border-color: #6c757d;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #6c757d;
  --bs-btn-hover-border-color: #6c757d;
  --bs-btn-focus-shadow-rgb: 108, 117, 125;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #6c757d;
  --bs-btn-active-border-color: #6c757d;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #6c757d;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #6c757d;
  --bs-gradient: none;
}

.btn-outline-success {
  --bs-btn-color: #1cbb8c;
  --bs-btn-border-color: #1cbb8c;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #1cbb8c;
  --bs-btn-hover-border-color: #1cbb8c;
  --bs-btn-focus-shadow-rgb: 28, 187, 140;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #1cbb8c;
  --bs-btn-active-border-color: #1cbb8c;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #1cbb8c;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #1cbb8c;
  --bs-gradient: none;
}

.btn-outline-info {
  --bs-btn-color: #17a2b8;
  --bs-btn-border-color: #17a2b8;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #17a2b8;
  --bs-btn-hover-border-color: #17a2b8;
  --bs-btn-focus-shadow-rgb: 23, 162, 184;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #17a2b8;
  --bs-btn-active-border-color: #17a2b8;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #17a2b8;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #17a2b8;
  --bs-gradient: none;
}

.btn-outline-warning {
  --bs-btn-color: #fcb92c;
  --bs-btn-border-color: #fcb92c;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #fcb92c;
  --bs-btn-hover-border-color: #fcb92c;
  --bs-btn-focus-shadow-rgb: 252, 185, 44;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #fcb92c;
  --bs-btn-active-border-color: #fcb92c;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fcb92c;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #fcb92c;
  --bs-gradient: none;
}

.btn-outline-danger {
  --bs-btn-color: #dc3545;
  --bs-btn-border-color: #dc3545;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #dc3545;
  --bs-btn-hover-border-color: #dc3545;
  --bs-btn-focus-shadow-rgb: 220, 53, 69;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #dc3545;
  --bs-btn-active-border-color: #dc3545;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #dc3545;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #dc3545;
  --bs-gradient: none;
}

.btn-outline-light {
  --bs-btn-color: #f5f7fb;
  --bs-btn-border-color: #f5f7fb;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #f5f7fb;
  --bs-btn-hover-border-color: #f5f7fb;
  --bs-btn-focus-shadow-rgb: 245, 247, 251;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #f5f7fb;
  --bs-btn-active-border-color: #f5f7fb;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #f5f7fb;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #f5f7fb;
  --bs-gradient: none;
}

.btn-outline-dark {
  --bs-btn-color: #212529;
  --bs-btn-border-color: #212529;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #212529;
  --bs-btn-hover-border-color: #212529;
  --bs-btn-focus-shadow-rgb: 33, 37, 41;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #212529;
  --bs-btn-active-border-color: #212529;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #212529;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #212529;
  --bs-gradient: none;
}

.btn-link {
  --bs-btn-font-weight: 400;
  --bs-btn-color: var(--bs-link-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: var(--bs-link-hover-color);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-color: var(--bs-link-hover-color);
  --bs-btn-active-border-color: transparent;
  --bs-btn-disabled-color: #6c757d;
  --bs-btn-disabled-border-color: transparent;
  --bs-btn-box-shadow: none;
  --bs-btn-focus-shadow-rgb: 88, 145, 226;
  text-decoration: none;
}
.btn-link:hover, .btn-link:focus-visible {
  text-decoration: underline;
}
.btn-link:focus-visible {
  color: var(--bs-btn-color);
}
.btn-link:hover {
  color: var(--bs-btn-hover-color);
}

.btn-lg, .btn-group-lg > .btn {
  --bs-btn-padding-y: 0.4rem;
  --bs-btn-padding-x: 1rem;
  --bs-btn-font-size: 0.925rem;
  --bs-btn-border-radius: 0.3rem;
}

.btn-sm, .btn-group-sm > .btn {
  --bs-btn-padding-y: 0.2rem;
  --bs-btn-padding-x: 0.5rem;
  --bs-btn-font-size: 0.75rem;
  --bs-btn-border-radius: 0.1rem;
}

.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 {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    transition: none;
  }
}

.dropup,
.dropend,
.dropdown,
.dropstart,
.dropup-center,
.dropdown-center {
  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 {
  --bs-dropdown-zindex: 1000;
  --bs-dropdown-min-width: 10rem;
  --bs-dropdown-padding-x: 0;
  --bs-dropdown-padding-y: 0.5rem;
  --bs-dropdown-spacer: 0.125rem;
  --bs-dropdown-font-size: 0.875rem;
  --bs-dropdown-color: #495057;
  --bs-dropdown-bg: #fff;
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-border-radius: 0.2rem;
  --bs-dropdown-border-width: 1px;
  --bs-dropdown-inner-border-radius: calc(0.2rem - 1px);
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-divider-margin-y: 0.5rem;
  --bs-dropdown-box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.05);
  --bs-dropdown-link-color: #212529;
  --bs-dropdown-link-hover-color: #1e2125;
  --bs-dropdown-link-hover-bg: #e9ecef;
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-active-bg: #3B7DDD;
  --bs-dropdown-link-disabled-color: #adb5bd;
  --bs-dropdown-item-padding-x: 1rem;
  --bs-dropdown-item-padding-y: 0.25rem;
  --bs-dropdown-header-color: #6c757d;
  --bs-dropdown-header-padding-x: 1rem;
  --bs-dropdown-header-padding-y: 0.5rem;
  position: absolute;
  z-index: var(--bs-dropdown-zindex);
  display: none;
  min-width: var(--bs-dropdown-min-width);
  padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
  margin: 0;
  font-size: var(--bs-dropdown-font-size);
  color: var(--bs-dropdown-color);
  text-align: left;
  list-style: none;
  background-color: var(--bs-dropdown-bg);
  background-clip: padding-box;
  border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
  border-radius: var(--bs-dropdown-border-radius);
}
.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: var(--bs-dropdown-spacer);
}

.dropdown-menu-start {
  --bs-position: start;
}
.dropdown-menu-start[data-bs-popper] {
  right: auto;
  left: 0;
}

.dropdown-menu-end {
  --bs-position: end;
}
.dropdown-menu-end[data-bs-popper] {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-start {
    --bs-position: start;
  }
  .dropdown-menu-sm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-end {
    --bs-position: end;
  }
  .dropdown-menu-sm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-start {
    --bs-position: start;
  }
  .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-end {
    --bs-position: end;
  }
  .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-start {
    --bs-position: start;
  }
  .dropdown-menu-lg-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-end {
    --bs-position: end;
  }
  .dropdown-menu-lg-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-start {
    --bs-position: start;
  }
  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-end {
    --bs-position: end;
  }
  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1440px) {
  .dropdown-menu-xxl-start {
    --bs-position: start;
  }
  .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xxl-end {
    --bs-position: end;
  }
  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: var(--bs-dropdown-spacer);
}
.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;
}

.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: var(--bs-dropdown-spacer);
}
.dropend .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;
}
.dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropend .dropdown-toggle::after {
  vertical-align: 0;
}

.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: var(--bs-dropdown-spacer);
}
.dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropstart .dropdown-toggle::after {
  display: none;
}
.dropstart .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;
}
.dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-divider {
  height: 0;
  margin: var(--bs-dropdown-divider-margin-y) 0;
  overflow: hidden;
  border-top: 1px solid var(--bs-dropdown-divider-bg);
  opacity: 1;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  clear: both;
  font-weight: 400;
  color: var(--bs-dropdown-link-color);
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: var(--bs-dropdown-link-hover-color);
  text-decoration: none;
  background-color: var(--bs-dropdown-link-hover-bg);
}
.dropdown-item.active, .dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: var(--bs-dropdown-link-active-bg);
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: var(--bs-dropdown-link-disabled-color);
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
  margin-bottom: 0;
  font-size: 0.75rem;
  color: var(--bs-dropdown-header-color);
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  color: var(--bs-dropdown-link-color);
}

.dropdown-menu-dark {
  --bs-dropdown-color: #dee2e6;
  --bs-dropdown-bg: #343a40;
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-box-shadow: ;
  --bs-dropdown-link-color: #dee2e6;
  --bs-dropdown-link-hover-color: #fff;
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-active-bg: #3B7DDD;
  --bs-dropdown-link-disabled-color: #adb5bd;
  --bs-dropdown-header-color: #adb5bd;
}

.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-check:checked + .btn,
.btn-group > .btn-check:focus + .btn,
.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn-check:checked + .btn,
.btn-group-vertical > .btn-check:focus + .btn,
.btn-group-vertical > .btn:hover,
.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 {
  border-radius: 0.2rem;
}
.btn-group > :not(.btn-check:first-child) + .btn,
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn.dropdown-toggle-split:first-child,
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:nth-child(n+3),
.btn-group > :not(.btn-check) + .btn,
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.6375rem;
  padding-left: 0.6375rem;
}
.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropstart .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 ~ .btn,
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav {
  --bs-nav-link-padding-x: 1rem;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-link-color);
  --bs-nav-link-hover-color: var(--bs-link-hover-color);
  --bs-nav-link-disabled-color: #6c757d;
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight);
  color: var(--bs-nav-link-color);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}
.nav-link:hover, .nav-link:focus {
  color: var(--bs-nav-link-hover-color);
  text-decoration: none;
}
.nav-link.disabled {
  color: var(--bs-nav-link-disabled-color);
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  --bs-nav-tabs-border-width: 1px;
  --bs-nav-tabs-border-color: #dee2e6;
  --bs-nav-tabs-border-radius: 0.2rem;
  --bs-nav-tabs-link-hover-border-color: #e9ecef #e9ecef #dee2e6;
  --bs-nav-tabs-link-active-color: #495057;
  --bs-nav-tabs-link-active-bg: #f5f7fb;
  --bs-nav-tabs-link-active-border-color: #dee2e6 #dee2e6 #f5f7fb;
  border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
}
.nav-tabs .nav-link {
  margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
  background: none;
  border: var(--bs-nav-tabs-border-width) solid transparent;
  border-top-left-radius: var(--bs-nav-tabs-border-radius);
  border-top-right-radius: var(--bs-nav-tabs-border-radius);
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  isolation: isolate;
  border-color: var(--bs-nav-tabs-link-hover-border-color);
}
.nav-tabs .nav-link.disabled, .nav-tabs .nav-link:disabled {
  color: var(--bs-nav-link-disabled-color);
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: var(--bs-nav-tabs-link-active-color);
  background-color: var(--bs-nav-tabs-link-active-bg);
  border-color: var(--bs-nav-tabs-link-active-border-color);
}
.nav-tabs .dropdown-menu {
  margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills {
  --bs-nav-pills-border-radius: 0.2rem;
  --bs-nav-pills-link-active-color: #fff;
  --bs-nav-pills-link-active-bg: #3B7DDD;
}
.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: var(--bs-nav-pills-border-radius);
}
.nav-pills .nav-link:disabled {
  color: var(--bs-nav-link-disabled-color);
  background-color: transparent;
  border-color: transparent;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: var(--bs-nav-pills-link-active-color);
  background-color: var(--bs-nav-pills-link-active-bg);
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.navbar {
  --bs-navbar-padding-x: 1.375rem;
  --bs-navbar-padding-y: 0.875rem;
  --bs-navbar-color: rgba(0, 0, 0, 0.55);
  --bs-navbar-hover-color: rgba(0, 0, 0, 0.7);
  --bs-navbar-disabled-color: rgba(0, 0, 0, 0.3);
  --bs-navbar-active-color: rgba(0, 0, 0, 0.9);
  --bs-navbar-brand-padding-y: 0.875rem;
  --bs-navbar-brand-margin-end: 1rem;
  --bs-navbar-brand-font-size: 1.15rem;
  --bs-navbar-brand-color: rgba(0, 0, 0, 0.9);
  --bs-navbar-brand-hover-color: rgba(0, 0, 0, 0.9);
  --bs-navbar-nav-link-padding-x: 0.5rem;
  --bs-navbar-toggler-padding-y: 0.25rem;
  --bs-navbar-toggler-padding-x: 0.75rem;
  --bs-navbar-toggler-font-size: 0.925rem;
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  --bs-navbar-toggler-border-color: rgba(0, 0, 0, 0.1);
  --bs-navbar-toggler-border-radius: 0.2rem;
  --bs-navbar-toggler-focus-width: 0.2rem;
  --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
}
.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-sm,
.navbar > .container-md,
.navbar > .container-lg,
.navbar > .container-xl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  padding-top: var(--bs-navbar-brand-padding-y);
  padding-bottom: var(--bs-navbar-brand-padding-y);
  margin-right: var(--bs-navbar-brand-margin-end);
  font-size: var(--bs-navbar-brand-font-size);
  color: var(--bs-navbar-brand-color);
  white-space: nowrap;
}
.navbar-brand:hover, .navbar-brand:focus {
  color: var(--bs-navbar-brand-hover-color);
  text-decoration: none;
}

.navbar-nav {
  --bs-nav-link-padding-x: 0;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-navbar-color);
  --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
  --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .show > .nav-link,
.navbar-nav .nav-link.active {
  color: var(--bs-navbar-active-color);
}
.navbar-nav .dropdown-menu {
  position: static;
}

.navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--bs-navbar-color);
}
.navbar-text a,
.navbar-text a:hover,
.navbar-text a:focus {
  color: var(--bs-navbar-active-color);
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
  font-size: var(--bs-navbar-toggler-font-size);
  line-height: 1;
  color: var(--bs-navbar-color);
  background-color: transparent;
  border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
  border-radius: var(--bs-navbar-toggler-border-radius);
  transition: var(--bs-navbar-toggler-transition);
}
@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    transition: none;
  }
}
.navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: var(--bs-navbar-toggler-icon-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.navbar-nav-scroll {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto;
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-wrap: 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: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
  .navbar-expand-sm .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-sm .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-sm .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    flex-wrap: 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: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
  .navbar-expand-md .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-md .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-md .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: 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: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
  .navbar-expand-lg .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-lg .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-lg .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-wrap: 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: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xl .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-xl .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-xl .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1440px) {
  .navbar-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xxl .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-xxl .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-xxl .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
.navbar-expand {
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.navbar-expand .navbar-nav {
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: var(--bs-navbar-nav-link-padding-x);
  padding-left: var(--bs-navbar-nav-link-padding-x);
}
.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}
.navbar-expand .offcanvas {
  position: static;
  z-index: auto;
  flex-grow: 1;
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
  background-color: transparent !important;
  border: 0 !important;
  transform: none !important;
  transition: none;
}
.navbar-expand .offcanvas .offcanvas-header {
  display: none;
}
.navbar-expand .offcanvas .offcanvas-body {
  display: flex;
  flex-grow: 0;
  padding: 0;
  overflow-y: visible;
}

.navbar-dark {
  --bs-navbar-color: rgba(255, 255, 255, 0.55);
  --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
  --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
  --bs-navbar-active-color: #fff;
  --bs-navbar-brand-color: #fff;
  --bs-navbar-brand-hover-color: #fff;
  --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.card {
  --bs-card-spacer-y: 1.25rem;
  --bs-card-spacer-x: 1.25rem;
  --bs-card-title-spacer-y: 0.5rem;
  --bs-card-border-width: 0;
  --bs-card-border-color: transparent;
  --bs-card-border-radius: 0.25rem;
  --bs-card-box-shadow: ;
  --bs-card-inner-border-radius: 0.25rem;
  --bs-card-cap-padding-y: 1rem;
  --bs-card-cap-padding-x: 1.25rem;
  --bs-card-cap-bg: #fff;
  --bs-card-cap-color: ;
  --bs-card-height: ;
  --bs-card-color: ;
  --bs-card-bg: #fff;
  --bs-card-img-overlay-padding: 1rem;
  --bs-card-group-margin: 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--bs-card-height);
  word-wrap: break-word;
  background-color: var(--bs-card-bg);
  background-clip: border-box;
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  border-radius: var(--bs-card-border-radius);
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius);
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  color: var(--bs-card-color);
}

.card-title {
  margin-bottom: var(--bs-card-title-spacer-y);
}

.card-subtitle {
  margin-top: calc(-0.5 * var(--bs-card-title-spacer-y));
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}
.card-link + .card-link {
  margin-left: var(--bs-card-spacer-x);
}

.card-header {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  margin-bottom: 0;
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
}
.card-header:first-child {
  border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
}

.card-footer {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
}
.card-footer:last-child {
  border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
}

.card-header-tabs {
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
  margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
  border-bottom: 0;
}
.card-header-tabs .nav-link.active {
  background-color: var(--bs-card-bg);
  border-bottom-color: var(--bs-card-bg);
}

.card-header-pills {
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: var(--bs-card-img-overlay-padding);
  border-radius: var(--bs-card-inner-border-radius);
}

.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius);
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
}

.card-group > .card {
  margin-bottom: var(--bs-card-group-margin);
}
@media (min-width: 576px) {
  .card-group {
    display: flex;
    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;
  }
}

.badge {
  --bs-badge-padding-x: 0.45em;
  --bs-badge-padding-y: 0.3em;
  --bs-badge-font-size: 80%;
  --bs-badge-font-weight: 600;
  --bs-badge-color: #fff;
  --bs-badge-border-radius: 0.2rem;
  display: inline-block;
  padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
  font-size: var(--bs-badge-font-size);
  font-weight: var(--bs-badge-font-weight);
  line-height: 1;
  color: var(--bs-badge-color);
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: var(--bs-badge-border-radius);
}
.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.list-group {
  --bs-list-group-color: #212529;
  --bs-list-group-bg: #fff;
  --bs-list-group-border-color: rgba(0, 0, 0, 0.125);
  --bs-list-group-border-width: 1px;
  --bs-list-group-border-radius: 0.2rem;
  --bs-list-group-item-padding-x: 1rem;
  --bs-list-group-item-padding-y: 0.5rem;
  --bs-list-group-action-color: #495057;
  --bs-list-group-action-hover-color: #495057;
  --bs-list-group-action-hover-bg: #f8f9fa;
  --bs-list-group-action-active-color: #495057;
  --bs-list-group-action-active-bg: #e9ecef;
  --bs-list-group-disabled-color: #6c757d;
  --bs-list-group-disabled-bg: #fff;
  --bs-list-group-active-color: #fff;
  --bs-list-group-active-bg: #3B7DDD;
  --bs-list-group-active-border-color: #3B7DDD;
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: var(--bs-list-group-border-radius);
}

.list-group-numbered {
  list-style-type: none;
  counter-reset: section;
}
.list-group-numbered > .list-group-item::before {
  content: counters(section, ".") ". ";
  counter-increment: section;
}

.list-group-item-action {
  width: 100%;
  color: var(--bs-list-group-action-color);
  text-align: inherit;
}
.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: var(--bs-list-group-action-hover-color);
  text-decoration: none;
  background-color: var(--bs-list-group-action-hover-bg);
}
.list-group-item-action:active {
  color: var(--bs-list-group-action-active-color);
  background-color: var(--bs-list-group-action-active-bg);
}

.list-group-item {
  position: relative;
  display: block;
  padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
  color: var(--bs-list-group-color);
  background-color: var(--bs-list-group-bg);
  border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
}
.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}
.list-group-item.disabled, .list-group-item:disabled {
  color: var(--bs-list-group-disabled-color);
  pointer-events: none;
  background-color: var(--bs-list-group-disabled-bg);
}
.list-group-item.active {
  z-index: 2;
  color: var(--bs-list-group-active-color);
  background-color: var(--bs-list-group-active-bg);
  border-color: var(--bs-list-group-active-border-color);
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item + .list-group-item.active {
  margin-top: calc(-1 * var(--bs-list-group-border-width));
  border-top-width: var(--bs-list-group-border-width);
}

.list-group-horizontal {
  flex-direction: row;
}
.list-group-horizontal > .list-group-item:first-child:not(:last-child) {
  border-bottom-left-radius: var(--bs-list-group-border-radius);
  border-top-right-radius: 0;
}
.list-group-horizontal > .list-group-item:last-child:not(:first-child) {
  border-top-right-radius: var(--bs-list-group-border-radius);
  border-bottom-left-radius: 0;
}
.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: var(--bs-list-group-border-width);
  border-left-width: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: calc(-1 * var(--bs-list-group-border-width));
  border-left-width: var(--bs-list-group-border-width);
}

@media (min-width: 576px) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }
  .list-group-horizontal-sm > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 768px) {
  .list-group-horizontal-md {
    flex-direction: row;
  }
  .list-group-horizontal-md > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 992px) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }
  .list-group-horizontal-lg > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    flex-direction: row;
  }
  .list-group-horizontal-xl > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 1440px) {
  .list-group-horizontal-xxl {
    flex-direction: row;
  }
  .list-group-horizontal-xxl > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
.list-group-flush {
  border-radius: 0;
}
.list-group-flush > .list-group-item {
  border-width: 0 0 var(--bs-list-group-border-width);
}
.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: #234b85;
  background-color: #d8e5f8;
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #234b85;
  background-color: #c2cedf;
}
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #234b85;
  border-color: #234b85;
}

.list-group-item-secondary {
  color: #41464b;
  background-color: #e2e3e5;
}
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #41464b;
  background-color: #cbccce;
}
.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #41464b;
  border-color: #41464b;
}

.list-group-item-success {
  color: #117054;
  background-color: #d2f1e8;
}
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: #117054;
  background-color: #bdd9d1;
}
.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #117054;
  border-color: #117054;
}

.list-group-item-info {
  color: #0e616e;
  background-color: #d1ecf1;
}
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: #0e616e;
  background-color: #bcd4d9;
}
.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #0e616e;
  border-color: #0e616e;
}

.list-group-item-warning {
  color: #976f1a;
  background-color: #fef1d5;
}
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: #976f1a;
  background-color: #e5d9c0;
}
.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #976f1a;
  border-color: #976f1a;
}

.list-group-item-danger {
  color: #842029;
  background-color: #f8d7da;
}
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: #842029;
  background-color: #dfc2c4;
}
.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #842029;
  border-color: #842029;
}

.list-group-item-light {
  color: #626364;
  background-color: #fdfdfe;
}
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: #626364;
  background-color: #e4e4e5;
}
.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #626364;
  border-color: #626364;
}

.list-group-item-dark {
  color: #141619;
  background-color: #d3d3d4;
}
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: #141619;
  background-color: #bebebf;
}
.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #141619;
  border-color: #141619;
}

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 0.2rem;
  opacity: 0.5;
}
.btn-close:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}
.btn-close:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(59, 125, 221, 0.25);
  opacity: 1;
}
.btn-close:disabled, .btn-close.disabled {
  pointer-events: none;
  user-select: none;
  opacity: 0.25;
}

.btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.text-bg-primary {
  color: #fff !important;
  background-color: RGBA(59, 125, 221, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-secondary {
  color: #fff !important;
  background-color: RGBA(108, 117, 125, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-success {
  color: #000 !important;
  background-color: RGBA(28, 187, 140, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-info {
  color: #fff !important;
  background-color: RGBA(23, 162, 184, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-warning {
  color: #000 !important;
  background-color: RGBA(252, 185, 44, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-danger {
  color: #fff !important;
  background-color: RGBA(220, 53, 69, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-light {
  color: #000 !important;
  background-color: RGBA(245, 247, 251, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-dark {
  color: #fff !important;
  background-color: RGBA(33, 37, 41, var(--bs-bg-opacity, 1)) !important;
}

.link-primary {
  color: #3B7DDD !important;
}
.link-primary:hover, .link-primary:focus {
  color: #2f64b1 !important;
}

.link-secondary {
  color: #6c757d !important;
}
.link-secondary:hover, .link-secondary:focus {
  color: #565e64 !important;
}

.link-success {
  color: #1cbb8c !important;
}
.link-success:hover, .link-success:focus {
  color: #49c9a3 !important;
}

.link-info {
  color: #17a2b8 !important;
}
.link-info:hover, .link-info:focus {
  color: #128293 !important;
}

.link-warning {
  color: #fcb92c !important;
}
.link-warning:hover, .link-warning:focus {
  color: #fdc756 !important;
}

.link-danger {
  color: #dc3545 !important;
}
.link-danger:hover, .link-danger:focus {
  color: #b02a37 !important;
}

.link-light {
  color: #f5f7fb !important;
}
.link-light:hover, .link-light:focus {
  color: #f7f9fc !important;
}

.link-dark {
  color: #212529 !important;
}
.link-dark:hover, .link-dark:focus {
  color: #1a1e21 !important;
}

.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: 75%;
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

.ratio-21x9 {
  --bs-aspect-ratio: 42.8571428571%;
}

.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;
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

.sticky-bottom {
  position: sticky;
  bottom: 0;
  z-index: 1020;
}

@media (min-width: 576px) {
  .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-sm-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-md-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-lg-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1440px) {
  .sticky-xxl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xxl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
.hstack {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
}

.vstack {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-self: stretch;
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vr {
  display: inline-block;
  align-self: stretch;
  width: 1px;
  min-height: 1em;
  background-color: currentcolor;
  opacity: 0.25;
}

.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;
}

.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.float-none {
  float: none !important;
}

.opacity-0 {
  opacity: 0 !important;
}

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !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;
}

.d-none {
  display: none !important;
}

.shadow {
  box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.05) !important;
}

.shadow-sm {
  box-shadow: 0 0.05rem 0.2rem rgba(0, 0, 0, 0.05) !important;
}

.shadow-lg {
  box-shadow: 0 0.2rem 0.2rem rgba(0, 0, 0, 0.05) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.top-0 {
  top: 0 !important;
}

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

.start-0 {
  left: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

.end-0 {
  right: 0 !important;
}

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

.translate-middle-y {
  transform: translateY(-50%) !important;
}

.border {
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-end {
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-end-0 {
  border-right: 0 !important;
}

.border-bottom {
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-start {
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-start-0 {
  border-left: 0 !important;
}

.border-primary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
}

.border-secondary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
}

.border-success {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
}

.border-info {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
}

.border-warning {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
}

.border-danger {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
}

.border-light {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
}

.border-dark {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}

.border-white {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
}

.border-1 {
  --bs-border-width: 1px;
}

.border-2 {
  --bs-border-width: 2px;
}

.border-3 {
  --bs-border-width: 3px;
}

.border-4 {
  --bs-border-width: 4px;
}

.border-5 {
  --bs-border-width: 5px;
}

.border-opacity-10 {
  --bs-border-opacity: 0.1;
}

.border-opacity-25 {
  --bs-border-opacity: 0.25;
}

.border-opacity-50 {
  --bs-border-opacity: 0.5;
}

.border-opacity-75 {
  --bs-border-opacity: 0.75;
}

.border-opacity-100 {
  --bs-border-opacity: 1;
}

.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;
}

.mw-100 {
  max-width: 100% !important;
}

.vw-100 {
  width: 100vw !important;
}

.min-vw-100 {
  min-width: 100vw !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;
}

.mh-100 {
  max-height: 100% !important;
}

.vh-100 {
  height: 100vh !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.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-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;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !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;
}

.justify-content-evenly {
  justify-content: space-evenly !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;
}

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-6 {
  margin: 4.5rem !important;
}

.m-7 {
  margin: 6rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-6 {
  margin-right: 4.5rem !important;
  margin-left: 4.5rem !important;
}

.mx-7 {
  margin-right: 6rem !important;
  margin-left: 6rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-6 {
  margin-top: 4.5rem !important;
  margin-bottom: 4.5rem !important;
}

.my-7 {
  margin-top: 6rem !important;
  margin-bottom: 6rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-6 {
  margin-top: 4.5rem !important;
}

.mt-7 {
  margin-top: 6rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-6 {
  margin-right: 4.5rem !important;
}

.me-7 {
  margin-right: 6rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-6 {
  margin-bottom: 4.5rem !important;
}

.mb-7 {
  margin-bottom: 6rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-6 {
  margin-left: 4.5rem !important;
}

.ms-7 {
  margin-left: 6rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.m-n6 {
  margin: -4.5rem !important;
}

.m-n7 {
  margin: -6rem !important;
}

.mx-n1 {
  margin-right: -0.25rem !important;
  margin-left: -0.25rem !important;
}

.mx-n2 {
  margin-right: -0.5rem !important;
  margin-left: -0.5rem !important;
}

.mx-n3 {
  margin-right: -1rem !important;
  margin-left: -1rem !important;
}

.mx-n4 {
  margin-right: -1.5rem !important;
  margin-left: -1.5rem !important;
}

.mx-n5 {
  margin-right: -3rem !important;
  margin-left: -3rem !important;
}

.mx-n6 {
  margin-right: -4.5rem !important;
  margin-left: -4.5rem !important;
}

.mx-n7 {
  margin-right: -6rem !important;
  margin-left: -6rem !important;
}

.my-n1 {
  margin-top: -0.25rem !important;
  margin-bottom: -0.25rem !important;
}

.my-n2 {
  margin-top: -0.5rem !important;
  margin-bottom: -0.5rem !important;
}

.my-n3 {
  margin-top: -1rem !important;
  margin-bottom: -1rem !important;
}

.my-n4 {
  margin-top: -1.5rem !important;
  margin-bottom: -1.5rem !important;
}

.my-n5 {
  margin-top: -3rem !important;
  margin-bottom: -3rem !important;
}

.my-n6 {
  margin-top: -4.5rem !important;
  margin-bottom: -4.5rem !important;
}

.my-n7 {
  margin-top: -6rem !important;
  margin-bottom: -6rem !important;
}

.mt-n1 {
  margin-top: -0.25rem !important;
}

.mt-n2 {
  margin-top: -0.5rem !important;
}

.mt-n3 {
  margin-top: -1rem !important;
}

.mt-n4 {
  margin-top: -1.5rem !important;
}

.mt-n5 {
  margin-top: -3rem !important;
}

.mt-n6 {
  margin-top: -4.5rem !important;
}

.mt-n7 {
  margin-top: -6rem !important;
}

.me-n1 {
  margin-right: -0.25rem !important;
}

.me-n2 {
  margin-right: -0.5rem !important;
}

.me-n3 {
  margin-right: -1rem !important;
}

.me-n4 {
  margin-right: -1.5rem !important;
}

.me-n5 {
  margin-right: -3rem !important;
}

.me-n6 {
  margin-right: -4.5rem !important;
}

.me-n7 {
  margin-right: -6rem !important;
}

.mb-n1 {
  margin-bottom: -0.25rem !important;
}

.mb-n2 {
  margin-bottom: -0.5rem !important;
}

.mb-n3 {
  margin-bottom: -1rem !important;
}

.mb-n4 {
  margin-bottom: -1.5rem !important;
}

.mb-n5 {
  margin-bottom: -3rem !important;
}

.mb-n6 {
  margin-bottom: -4.5rem !important;
}

.mb-n7 {
  margin-bottom: -6rem !important;
}

.ms-n1 {
  margin-left: -0.25rem !important;
}

.ms-n2 {
  margin-left: -0.5rem !important;
}

.ms-n3 {
  margin-left: -1rem !important;
}

.ms-n4 {
  margin-left: -1.5rem !important;
}

.ms-n5 {
  margin-left: -3rem !important;
}

.ms-n6 {
  margin-left: -4.5rem !important;
}

.ms-n7 {
  margin-left: -6rem !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.p-6 {
  padding: 4.5rem !important;
}

.p-7 {
  padding: 6rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.px-6 {
  padding-right: 4.5rem !important;
  padding-left: 4.5rem !important;
}

.px-7 {
  padding-right: 6rem !important;
  padding-left: 6rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.py-6 {
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}

.py-7 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pt-6 {
  padding-top: 4.5rem !important;
}

.pt-7 {
  padding-top: 6rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pe-6 {
  padding-right: 4.5rem !important;
}

.pe-7 {
  padding-right: 6rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.pb-6 {
  padding-bottom: 4.5rem !important;
}

.pb-7 {
  padding-bottom: 6rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.ps-6 {
  padding-left: 4.5rem !important;
}

.ps-7 {
  padding-left: 6rem !important;
}

.gap-0 {
  gap: 0 !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

.gap-6 {
  gap: 4.5rem !important;
}

.gap-7 {
  gap: 6rem !important;
}

.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
  font-size: 1.75rem !important;
}

.fs-2 {
  font-size: 1.53125rem !important;
}

.fs-3 {
  font-size: 1.3125rem !important;
}

.fs-4 {
  font-size: 1.09375rem !important;
}

.fs-5 {
  font-size: 0.875rem !important;
}

.fs-6 {
  font-size: 0.875rem !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-bold {
  font-weight: 600 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.5 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 1.5 !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-muted {
  --bs-text-opacity: 1;
  color: #6c757d !important;
}

.text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-reset {
  --bs-text-opacity: 1;
  color: inherit !important;
}

.text-opacity-25 {
  --bs-text-opacity: 0.25;
}

.text-opacity-50 {
  --bs-text-opacity: 0.5;
}

.text-opacity-75 {
  --bs-text-opacity: 0.75;
}

.text-opacity-100 {
  --bs-text-opacity: 1;
}

.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.bg-info {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}

.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}

.bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}

.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-transparent {
  --bs-bg-opacity: 1;
  background-color: transparent !important;
}

.bg-opacity-10 {
  --bs-bg-opacity: 0.1;
}

.bg-opacity-25 {
  --bs-bg-opacity: 0.25;
}

.bg-opacity-50 {
  --bs-bg-opacity: 0.5;
}

.bg-opacity-75 {
  --bs-bg-opacity: 0.75;
}

.bg-opacity-100 {
  --bs-bg-opacity: 1;
}

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

.user-select-all {
  user-select: all !important;
}

.user-select-auto {
  user-select: auto !important;
}

.user-select-none {
  user-select: none !important;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: var(--bs-border-radius) !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-1 {
  border-radius: var(--bs-border-radius-sm) !important;
}

.rounded-2 {
  border-radius: var(--bs-border-radius) !important;
}

.rounded-3 {
  border-radius: var(--bs-border-radius-lg) !important;
}

.rounded-4 {
  border-radius: var(--bs-border-radius-xl) !important;
}

.rounded-5 {
  border-radius: var(--bs-border-radius-2xl) !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: var(--bs-border-radius-pill) !important;
}

.rounded-top {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

.rounded-end {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}

.rounded-bottom {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}

.rounded-start {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }
  .float-sm-end {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !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;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .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-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;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !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;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !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;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-6 {
    margin: 4.5rem !important;
  }
  .m-sm-7 {
    margin: 6rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-6 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  .mx-sm-7 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-6 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .my-sm-7 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-6 {
    margin-top: 4.5rem !important;
  }
  .mt-sm-7 {
    margin-top: 6rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-6 {
    margin-right: 4.5rem !important;
  }
  .me-sm-7 {
    margin-right: 6rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-6 {
    margin-bottom: 4.5rem !important;
  }
  .mb-sm-7 {
    margin-bottom: 6rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-6 {
    margin-left: 4.5rem !important;
  }
  .ms-sm-7 {
    margin-left: 6rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  .m-sm-n3 {
    margin: -1rem !important;
  }
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  .m-sm-n5 {
    margin: -3rem !important;
  }
  .m-sm-n6 {
    margin: -4.5rem !important;
  }
  .m-sm-n7 {
    margin: -6rem !important;
  }
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-sm-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-sm-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .mx-sm-n6 {
    margin-right: -4.5rem !important;
    margin-left: -4.5rem !important;
  }
  .mx-sm-n7 {
    margin-right: -6rem !important;
    margin-left: -6rem !important;
  }
  .my-sm-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .my-sm-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-sm-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-sm-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-sm-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .my-sm-n6 {
    margin-top: -4.5rem !important;
    margin-bottom: -4.5rem !important;
  }
  .my-sm-n7 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  .mt-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .mt-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .mt-sm-n3 {
    margin-top: -1rem !important;
  }
  .mt-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .mt-sm-n5 {
    margin-top: -3rem !important;
  }
  .mt-sm-n6 {
    margin-top: -4.5rem !important;
  }
  .mt-sm-n7 {
    margin-top: -6rem !important;
  }
  .me-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .me-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .me-sm-n3 {
    margin-right: -1rem !important;
  }
  .me-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .me-sm-n5 {
    margin-right: -3rem !important;
  }
  .me-sm-n6 {
    margin-right: -4.5rem !important;
  }
  .me-sm-n7 {
    margin-right: -6rem !important;
  }
  .mb-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .mb-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .mb-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .mb-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .mb-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .mb-sm-n6 {
    margin-bottom: -4.5rem !important;
  }
  .mb-sm-n7 {
    margin-bottom: -6rem !important;
  }
  .ms-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .ms-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .ms-sm-n3 {
    margin-left: -1rem !important;
  }
  .ms-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .ms-sm-n5 {
    margin-left: -3rem !important;
  }
  .ms-sm-n6 {
    margin-left: -4.5rem !important;
  }
  .ms-sm-n7 {
    margin-left: -6rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .p-sm-6 {
    padding: 4.5rem !important;
  }
  .p-sm-7 {
    padding: 6rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-sm-6 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }
  .px-sm-7 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-sm-6 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .py-sm-7 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pt-sm-6 {
    padding-top: 4.5rem !important;
  }
  .pt-sm-7 {
    padding-top: 6rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pe-sm-6 {
    padding-right: 4.5rem !important;
  }
  .pe-sm-7 {
    padding-right: 6rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pb-sm-6 {
    padding-bottom: 4.5rem !important;
  }
  .pb-sm-7 {
    padding-bottom: 6rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
  .ps-sm-6 {
    padding-left: 4.5rem !important;
  }
  .ps-sm-7 {
    padding-left: 6rem !important;
  }
  .gap-sm-0 {
    gap: 0 !important;
  }
  .gap-sm-1 {
    gap: 0.25rem !important;
  }
  .gap-sm-2 {
    gap: 0.5rem !important;
  }
  .gap-sm-3 {
    gap: 1rem !important;
  }
  .gap-sm-4 {
    gap: 1.5rem !important;
  }
  .gap-sm-5 {
    gap: 3rem !important;
  }
  .gap-sm-6 {
    gap: 4.5rem !important;
  }
  .gap-sm-7 {
    gap: 6rem !important;
  }
  .text-sm-start {
    text-align: left !important;
  }
  .text-sm-end {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }
  .float-md-end {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !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;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .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-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;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !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;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !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;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-6 {
    margin: 4.5rem !important;
  }
  .m-md-7 {
    margin: 6rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-6 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  .mx-md-7 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-6 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .my-md-7 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-6 {
    margin-top: 4.5rem !important;
  }
  .mt-md-7 {
    margin-top: 6rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-6 {
    margin-right: 4.5rem !important;
  }
  .me-md-7 {
    margin-right: 6rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-6 {
    margin-bottom: 4.5rem !important;
  }
  .mb-md-7 {
    margin-bottom: 6rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-6 {
    margin-left: 4.5rem !important;
  }
  .ms-md-7 {
    margin-left: 6rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  .m-md-n3 {
    margin: -1rem !important;
  }
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  .m-md-n5 {
    margin: -3rem !important;
  }
  .m-md-n6 {
    margin: -4.5rem !important;
  }
  .m-md-n7 {
    margin: -6rem !important;
  }
  .mx-md-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .mx-md-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-md-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-md-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-md-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .mx-md-n6 {
    margin-right: -4.5rem !important;
    margin-left: -4.5rem !important;
  }
  .mx-md-n7 {
    margin-right: -6rem !important;
    margin-left: -6rem !important;
  }
  .my-md-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .my-md-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-md-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-md-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-md-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .my-md-n6 {
    margin-top: -4.5rem !important;
    margin-bottom: -4.5rem !important;
  }
  .my-md-n7 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  .mt-md-n1 {
    margin-top: -0.25rem !important;
  }
  .mt-md-n2 {
    margin-top: -0.5rem !important;
  }
  .mt-md-n3 {
    margin-top: -1rem !important;
  }
  .mt-md-n4 {
    margin-top: -1.5rem !important;
  }
  .mt-md-n5 {
    margin-top: -3rem !important;
  }
  .mt-md-n6 {
    margin-top: -4.5rem !important;
  }
  .mt-md-n7 {
    margin-top: -6rem !important;
  }
  .me-md-n1 {
    margin-right: -0.25rem !important;
  }
  .me-md-n2 {
    margin-right: -0.5rem !important;
  }
  .me-md-n3 {
    margin-right: -1rem !important;
  }
  .me-md-n4 {
    margin-right: -1.5rem !important;
  }
  .me-md-n5 {
    margin-right: -3rem !important;
  }
  .me-md-n6 {
    margin-right: -4.5rem !important;
  }
  .me-md-n7 {
    margin-right: -6rem !important;
  }
  .mb-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .mb-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .mb-md-n3 {
    margin-bottom: -1rem !important;
  }
  .mb-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .mb-md-n5 {
    margin-bottom: -3rem !important;
  }
  .mb-md-n6 {
    margin-bottom: -4.5rem !important;
  }
  .mb-md-n7 {
    margin-bottom: -6rem !important;
  }
  .ms-md-n1 {
    margin-left: -0.25rem !important;
  }
  .ms-md-n2 {
    margin-left: -0.5rem !important;
  }
  .ms-md-n3 {
    margin-left: -1rem !important;
  }
  .ms-md-n4 {
    margin-left: -1.5rem !important;
  }
  .ms-md-n5 {
    margin-left: -3rem !important;
  }
  .ms-md-n6 {
    margin-left: -4.5rem !important;
  }
  .ms-md-n7 {
    margin-left: -6rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .p-md-6 {
    padding: 4.5rem !important;
  }
  .p-md-7 {
    padding: 6rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-md-6 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }
  .px-md-7 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-md-6 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .py-md-7 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pt-md-6 {
    padding-top: 4.5rem !important;
  }
  .pt-md-7 {
    padding-top: 6rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pe-md-6 {
    padding-right: 4.5rem !important;
  }
  .pe-md-7 {
    padding-right: 6rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .pb-md-6 {
    padding-bottom: 4.5rem !important;
  }
  .pb-md-7 {
    padding-bottom: 6rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
  .ps-md-6 {
    padding-left: 4.5rem !important;
  }
  .ps-md-7 {
    padding-left: 6rem !important;
  }
  .gap-md-0 {
    gap: 0 !important;
  }
  .gap-md-1 {
    gap: 0.25rem !important;
  }
  .gap-md-2 {
    gap: 0.5rem !important;
  }
  .gap-md-3 {
    gap: 1rem !important;
  }
  .gap-md-4 {
    gap: 1.5rem !important;
  }
  .gap-md-5 {
    gap: 3rem !important;
  }
  .gap-md-6 {
    gap: 4.5rem !important;
  }
  .gap-md-7 {
    gap: 6rem !important;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }
  .float-lg-end {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !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;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .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-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;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !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;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !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;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-6 {
    margin: 4.5rem !important;
  }
  .m-lg-7 {
    margin: 6rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-6 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  .mx-lg-7 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-6 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .my-lg-7 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-6 {
    margin-top: 4.5rem !important;
  }
  .mt-lg-7 {
    margin-top: 6rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-6 {
    margin-right: 4.5rem !important;
  }
  .me-lg-7 {
    margin-right: 6rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-6 {
    margin-bottom: 4.5rem !important;
  }
  .mb-lg-7 {
    margin-bottom: 6rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-6 {
    margin-left: 4.5rem !important;
  }
  .ms-lg-7 {
    margin-left: 6rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  .m-lg-n3 {
    margin: -1rem !important;
  }
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  .m-lg-n5 {
    margin: -3rem !important;
  }
  .m-lg-n6 {
    margin: -4.5rem !important;
  }
  .m-lg-n7 {
    margin: -6rem !important;
  }
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-lg-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-lg-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .mx-lg-n6 {
    margin-right: -4.5rem !important;
    margin-left: -4.5rem !important;
  }
  .mx-lg-n7 {
    margin-right: -6rem !important;
    margin-left: -6rem !important;
  }
  .my-lg-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .my-lg-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-lg-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-lg-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-lg-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .my-lg-n6 {
    margin-top: -4.5rem !important;
    margin-bottom: -4.5rem !important;
  }
  .my-lg-n7 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  .mt-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .mt-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .mt-lg-n3 {
    margin-top: -1rem !important;
  }
  .mt-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .mt-lg-n5 {
    margin-top: -3rem !important;
  }
  .mt-lg-n6 {
    margin-top: -4.5rem !important;
  }
  .mt-lg-n7 {
    margin-top: -6rem !important;
  }
  .me-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .me-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .me-lg-n3 {
    margin-right: -1rem !important;
  }
  .me-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .me-lg-n5 {
    margin-right: -3rem !important;
  }
  .me-lg-n6 {
    margin-right: -4.5rem !important;
  }
  .me-lg-n7 {
    margin-right: -6rem !important;
  }
  .mb-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .mb-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .mb-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .mb-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .mb-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .mb-lg-n6 {
    margin-bottom: -4.5rem !important;
  }
  .mb-lg-n7 {
    margin-bottom: -6rem !important;
  }
  .ms-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .ms-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .ms-lg-n3 {
    margin-left: -1rem !important;
  }
  .ms-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .ms-lg-n5 {
    margin-left: -3rem !important;
  }
  .ms-lg-n6 {
    margin-left: -4.5rem !important;
  }
  .ms-lg-n7 {
    margin-left: -6rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .p-lg-6 {
    padding: 4.5rem !important;
  }
  .p-lg-7 {
    padding: 6rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-lg-6 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }
  .px-lg-7 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-lg-6 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .py-lg-7 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pt-lg-6 {
    padding-top: 4.5rem !important;
  }
  .pt-lg-7 {
    padding-top: 6rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pe-lg-6 {
    padding-right: 4.5rem !important;
  }
  .pe-lg-7 {
    padding-right: 6rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pb-lg-6 {
    padding-bottom: 4.5rem !important;
  }
  .pb-lg-7 {
    padding-bottom: 6rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
  .ps-lg-6 {
    padding-left: 4.5rem !important;
  }
  .ps-lg-7 {
    padding-left: 6rem !important;
  }
  .gap-lg-0 {
    gap: 0 !important;
  }
  .gap-lg-1 {
    gap: 0.25rem !important;
  }
  .gap-lg-2 {
    gap: 0.5rem !important;
  }
  .gap-lg-3 {
    gap: 1rem !important;
  }
  .gap-lg-4 {
    gap: 1.5rem !important;
  }
  .gap-lg-5 {
    gap: 3rem !important;
  }
  .gap-lg-6 {
    gap: 4.5rem !important;
  }
  .gap-lg-7 {
    gap: 6rem !important;
  }
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }
  .float-xl-end {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !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;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .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-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;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !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;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !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;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-6 {
    margin: 4.5rem !important;
  }
  .m-xl-7 {
    margin: 6rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-6 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  .mx-xl-7 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-6 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .my-xl-7 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-6 {
    margin-top: 4.5rem !important;
  }
  .mt-xl-7 {
    margin-top: 6rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-6 {
    margin-right: 4.5rem !important;
  }
  .me-xl-7 {
    margin-right: 6rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-6 {
    margin-bottom: 4.5rem !important;
  }
  .mb-xl-7 {
    margin-bottom: 6rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-6 {
    margin-left: 4.5rem !important;
  }
  .ms-xl-7 {
    margin-left: 6rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  .m-xl-n3 {
    margin: -1rem !important;
  }
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  .m-xl-n5 {
    margin: -3rem !important;
  }
  .m-xl-n6 {
    margin: -4.5rem !important;
  }
  .m-xl-n7 {
    margin: -6rem !important;
  }
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-xl-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-xl-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .mx-xl-n6 {
    margin-right: -4.5rem !important;
    margin-left: -4.5rem !important;
  }
  .mx-xl-n7 {
    margin-right: -6rem !important;
    margin-left: -6rem !important;
  }
  .my-xl-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .my-xl-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-xl-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-xl-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-xl-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .my-xl-n6 {
    margin-top: -4.5rem !important;
    margin-bottom: -4.5rem !important;
  }
  .my-xl-n7 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  .mt-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .mt-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .mt-xl-n3 {
    margin-top: -1rem !important;
  }
  .mt-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .mt-xl-n5 {
    margin-top: -3rem !important;
  }
  .mt-xl-n6 {
    margin-top: -4.5rem !important;
  }
  .mt-xl-n7 {
    margin-top: -6rem !important;
  }
  .me-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .me-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .me-xl-n3 {
    margin-right: -1rem !important;
  }
  .me-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .me-xl-n5 {
    margin-right: -3rem !important;
  }
  .me-xl-n6 {
    margin-right: -4.5rem !important;
  }
  .me-xl-n7 {
    margin-right: -6rem !important;
  }
  .mb-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .mb-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .mb-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .mb-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .mb-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .mb-xl-n6 {
    margin-bottom: -4.5rem !important;
  }
  .mb-xl-n7 {
    margin-bottom: -6rem !important;
  }
  .ms-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .ms-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .ms-xl-n3 {
    margin-left: -1rem !important;
  }
  .ms-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .ms-xl-n5 {
    margin-left: -3rem !important;
  }
  .ms-xl-n6 {
    margin-left: -4.5rem !important;
  }
  .ms-xl-n7 {
    margin-left: -6rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .p-xl-6 {
    padding: 4.5rem !important;
  }
  .p-xl-7 {
    padding: 6rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-xl-6 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }
  .px-xl-7 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-xl-6 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .py-xl-7 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pt-xl-6 {
    padding-top: 4.5rem !important;
  }
  .pt-xl-7 {
    padding-top: 6rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pe-xl-6 {
    padding-right: 4.5rem !important;
  }
  .pe-xl-7 {
    padding-right: 6rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pb-xl-6 {
    padding-bottom: 4.5rem !important;
  }
  .pb-xl-7 {
    padding-bottom: 6rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
  .ps-xl-6 {
    padding-left: 4.5rem !important;
  }
  .ps-xl-7 {
    padding-left: 6rem !important;
  }
  .gap-xl-0 {
    gap: 0 !important;
  }
  .gap-xl-1 {
    gap: 0.25rem !important;
  }
  .gap-xl-2 {
    gap: 0.5rem !important;
  }
  .gap-xl-3 {
    gap: 1rem !important;
  }
  .gap-xl-4 {
    gap: 1.5rem !important;
  }
  .gap-xl-5 {
    gap: 3rem !important;
  }
  .gap-xl-6 {
    gap: 4.5rem !important;
  }
  .gap-xl-7 {
    gap: 6rem !important;
  }
  .text-xl-start {
    text-align: left !important;
  }
  .text-xl-end {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1440px) {
  .float-xxl-start {
    float: left !important;
  }
  .float-xxl-end {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .order-xxl-first {
    order: -1 !important;
  }
  .order-xxl-0 {
    order: 0 !important;
  }
  .order-xxl-1 {
    order: 1 !important;
  }
  .order-xxl-2 {
    order: 2 !important;
  }
  .order-xxl-3 {
    order: 3 !important;
  }
  .order-xxl-4 {
    order: 4 !important;
  }
  .order-xxl-5 {
    order: 5 !important;
  }
  .order-xxl-last {
    order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .m-xxl-6 {
    margin: 4.5rem !important;
  }
  .m-xxl-7 {
    margin: 6rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-6 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  .mx-xxl-7 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-6 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .my-xxl-7 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxl-6 {
    margin-top: 4.5rem !important;
  }
  .mt-xxl-7 {
    margin-top: 6rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  .me-xxl-6 {
    margin-right: 4.5rem !important;
  }
  .me-xxl-7 {
    margin-right: 6rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-6 {
    margin-bottom: 4.5rem !important;
  }
  .mb-xxl-7 {
    margin-bottom: 6rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .ms-xxl-6 {
    margin-left: 4.5rem !important;
  }
  .ms-xxl-7 {
    margin-left: 6rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .m-xxl-n1 {
    margin: -0.25rem !important;
  }
  .m-xxl-n2 {
    margin: -0.5rem !important;
  }
  .m-xxl-n3 {
    margin: -1rem !important;
  }
  .m-xxl-n4 {
    margin: -1.5rem !important;
  }
  .m-xxl-n5 {
    margin: -3rem !important;
  }
  .m-xxl-n6 {
    margin: -4.5rem !important;
  }
  .m-xxl-n7 {
    margin: -6rem !important;
  }
  .mx-xxl-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .mx-xxl-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-xxl-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-xxl-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-xxl-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .mx-xxl-n6 {
    margin-right: -4.5rem !important;
    margin-left: -4.5rem !important;
  }
  .mx-xxl-n7 {
    margin-right: -6rem !important;
    margin-left: -6rem !important;
  }
  .my-xxl-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .my-xxl-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-xxl-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-xxl-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-xxl-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .my-xxl-n6 {
    margin-top: -4.5rem !important;
    margin-bottom: -4.5rem !important;
  }
  .my-xxl-n7 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  .mt-xxl-n1 {
    margin-top: -0.25rem !important;
  }
  .mt-xxl-n2 {
    margin-top: -0.5rem !important;
  }
  .mt-xxl-n3 {
    margin-top: -1rem !important;
  }
  .mt-xxl-n4 {
    margin-top: -1.5rem !important;
  }
  .mt-xxl-n5 {
    margin-top: -3rem !important;
  }
  .mt-xxl-n6 {
    margin-top: -4.5rem !important;
  }
  .mt-xxl-n7 {
    margin-top: -6rem !important;
  }
  .me-xxl-n1 {
    margin-right: -0.25rem !important;
  }
  .me-xxl-n2 {
    margin-right: -0.5rem !important;
  }
  .me-xxl-n3 {
    margin-right: -1rem !important;
  }
  .me-xxl-n4 {
    margin-right: -1.5rem !important;
  }
  .me-xxl-n5 {
    margin-right: -3rem !important;
  }
  .me-xxl-n6 {
    margin-right: -4.5rem !important;
  }
  .me-xxl-n7 {
    margin-right: -6rem !important;
  }
  .mb-xxl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .mb-xxl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .mb-xxl-n3 {
    margin-bottom: -1rem !important;
  }
  .mb-xxl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .mb-xxl-n5 {
    margin-bottom: -3rem !important;
  }
  .mb-xxl-n6 {
    margin-bottom: -4.5rem !important;
  }
  .mb-xxl-n7 {
    margin-bottom: -6rem !important;
  }
  .ms-xxl-n1 {
    margin-left: -0.25rem !important;
  }
  .ms-xxl-n2 {
    margin-left: -0.5rem !important;
  }
  .ms-xxl-n3 {
    margin-left: -1rem !important;
  }
  .ms-xxl-n4 {
    margin-left: -1.5rem !important;
  }
  .ms-xxl-n5 {
    margin-left: -3rem !important;
  }
  .ms-xxl-n6 {
    margin-left: -4.5rem !important;
  }
  .ms-xxl-n7 {
    margin-left: -6rem !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .p-xxl-6 {
    padding: 4.5rem !important;
  }
  .p-xxl-7 {
    padding: 6rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-xxl-6 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }
  .px-xxl-7 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-xxl-6 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .py-xxl-7 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pt-xxl-6 {
    padding-top: 4.5rem !important;
  }
  .pt-xxl-7 {
    padding-top: 6rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  .pe-xxl-6 {
    padding-right: 4.5rem !important;
  }
  .pe-xxl-7 {
    padding-right: 6rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .pb-xxl-6 {
    padding-bottom: 4.5rem !important;
  }
  .pb-xxl-7 {
    padding-bottom: 6rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
  .ps-xxl-6 {
    padding-left: 4.5rem !important;
  }
  .ps-xxl-7 {
    padding-left: 6rem !important;
  }
  .gap-xxl-0 {
    gap: 0 !important;
  }
  .gap-xxl-1 {
    gap: 0.25rem !important;
  }
  .gap-xxl-2 {
    gap: 0.5rem !important;
  }
  .gap-xxl-3 {
    gap: 1rem !important;
  }
  .gap-xxl-4 {
    gap: 1.5rem !important;
  }
  .gap-xxl-5 {
    gap: 3rem !important;
  }
  .gap-xxl-6 {
    gap: 4.5rem !important;
  }
  .gap-xxl-7 {
    gap: 6rem !important;
  }
  .text-xxl-start {
    text-align: left !important;
  }
  .text-xxl-end {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !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;
  }
  .d-print-none {
    display: none !important;
  }
}
.avatar {
  width: 40px;
  height: 40px;
}

.avatar-lg {
  width: 64px;
  height: 64px;
}

.avatar-title {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: #3B7DDD;
}

.btn .feather {
  width: 14px;
  height: 14px;
}

.btn-primary, .btn-primary:focus, .btn-primary.focus, .btn-primary.disabled, .btn-primary:disabled, .show > .btn-primary.dropdown-toggle {
  color: #fff;
}
.btn-primary:hover:not(:disabled):not(.disabled), .btn-primary.hover:not(:disabled):not(.disabled) {
  color: #fff;
}

.btn-secondary, .btn-secondary:focus, .btn-secondary.focus, .btn-secondary.disabled, .btn-secondary:disabled, .show > .btn-secondary.dropdown-toggle {
  color: #fff;
}
.btn-secondary:hover:not(:disabled):not(.disabled), .btn-secondary.hover:not(:disabled):not(.disabled) {
  color: #fff;
}

.btn-success, .btn-success:focus, .btn-success.focus, .btn-success.disabled, .btn-success:disabled, .show > .btn-success.dropdown-toggle {
  color: #fff;
}
.btn-success:hover:not(:disabled):not(.disabled), .btn-success.hover:not(:disabled):not(.disabled) {
  color: #fff;
}

.btn-info, .btn-info:focus, .btn-info.focus, .btn-info.disabled, .btn-info:disabled, .show > .btn-info.dropdown-toggle {
  color: #fff;
}
.btn-info:hover:not(:disabled):not(.disabled), .btn-info.hover:not(:disabled):not(.disabled) {
  color: #fff;
}

.btn-warning, .btn-warning:focus, .btn-warning.focus, .btn-warning.disabled, .btn-warning:disabled, .show > .btn-warning.dropdown-toggle {
  color: #fff;
}
.btn-warning:hover:not(:disabled):not(.disabled), .btn-warning.hover:not(:disabled):not(.disabled) {
  color: #fff;
}

.btn-danger, .btn-danger:focus, .btn-danger.focus, .btn-danger.disabled, .btn-danger:disabled, .show > .btn-danger.dropdown-toggle {
  color: #fff;
}
.btn-danger:hover:not(:disabled):not(.disabled), .btn-danger.hover:not(:disabled):not(.disabled) {
  color: #fff;
}

.btn-light, .btn-light:focus, .btn-light.focus, .btn-light.disabled, .btn-light:disabled, .show > .btn-light.dropdown-toggle {
  color: #fff;
}
.btn-light:hover:not(:disabled):not(.disabled), .btn-light.hover:not(:disabled):not(.disabled) {
  color: #fff;
}

.btn-dark, .btn-dark:focus, .btn-dark.focus, .btn-dark.disabled, .btn-dark:disabled, .show > .btn-dark.dropdown-toggle {
  color: #fff;
}
.btn-dark:hover:not(:disabled):not(.disabled), .btn-dark.hover:not(:disabled):not(.disabled) {
  color: #fff;
}

.btn-facebook {
  --bs-btn-color: #fff;
  --bs-btn-bg: #3b5998;
  --bs-btn-border-color: #3b5998;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #324c81;
  --bs-btn-hover-border-color: #2f477a;
  --bs-btn-focus-shadow-rgb: 88, 114, 167;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #2f477a;
  --bs-btn-active-border-color: #2c4372;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #3b5998;
  --bs-btn-disabled-border-color: #3b5998;
}
.btn-facebook, .btn-facebook:focus, .btn-facebook.focus, .btn-facebook.disabled, .btn-facebook:disabled, .show > .btn-facebook.dropdown-toggle {
  color: #fff;
}
.btn-facebook:hover:not(:disabled):not(.disabled), .btn-facebook.hover:not(:disabled):not(.disabled) {
  color: #fff;
}

.btn-twitter {
  --bs-btn-color: #000;
  --bs-btn-bg: #1da1f2;
  --bs-btn-border-color: #1da1f2;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #3faff4;
  --bs-btn-hover-border-color: #34aaf3;
  --bs-btn-focus-shadow-rgb: 25, 137, 206;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #4ab4f5;
  --bs-btn-active-border-color: #34aaf3;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #1da1f2;
  --bs-btn-disabled-border-color: #1da1f2;
}
.btn-twitter, .btn-twitter:focus, .btn-twitter.focus, .btn-twitter.disabled, .btn-twitter:disabled, .show > .btn-twitter.dropdown-toggle {
  color: #fff;
}
.btn-twitter:hover:not(:disabled):not(.disabled), .btn-twitter.hover:not(:disabled):not(.disabled) {
  color: #fff;
}

.btn-google {
  --bs-btn-color: #fff;
  --bs-btn-bg: #dc4e41;
  --bs-btn-border-color: #dc4e41;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #bb4237;
  --bs-btn-hover-border-color: #b03e34;
  --bs-btn-focus-shadow-rgb: 225, 105, 94;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #b03e34;
  --bs-btn-active-border-color: #a53b31;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #dc4e41;
  --bs-btn-disabled-border-color: #dc4e41;
}
.btn-google, .btn-google:focus, .btn-google.focus, .btn-google.disabled, .btn-google:disabled, .show > .btn-google.dropdown-toggle {
  color: #fff;
}
.btn-google:hover:not(:disabled):not(.disabled), .btn-google.hover:not(:disabled):not(.disabled) {
  color: #fff;
}

.btn-youtube {
  --bs-btn-color: #fff;
  --bs-btn-bg: #f00;
  --bs-btn-border-color: #f00;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #d90000;
  --bs-btn-hover-border-color: #cc0000;
  --bs-btn-focus-shadow-rgb: 255, 38, 38;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #cc0000;
  --bs-btn-active-border-color: #bf0000;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #f00;
  --bs-btn-disabled-border-color: #f00;
}
.btn-youtube, .btn-youtube:focus, .btn-youtube.focus, .btn-youtube.disabled, .btn-youtube:disabled, .show > .btn-youtube.dropdown-toggle {
  color: #fff;
}
.btn-youtube:hover:not(:disabled):not(.disabled), .btn-youtube.hover:not(:disabled):not(.disabled) {
  color: #fff;
}

.btn-vimeo {
  --bs-btn-color: #000;
  --bs-btn-bg: #1ab7ea;
  --bs-btn-border-color: #1ab7ea;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #3cc2ed;
  --bs-btn-hover-border-color: #31beec;
  --bs-btn-focus-shadow-rgb: 22, 156, 199;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #48c5ee;
  --bs-btn-active-border-color: #31beec;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #1ab7ea;
  --bs-btn-disabled-border-color: #1ab7ea;
}
.btn-vimeo, .btn-vimeo:focus, .btn-vimeo.focus, .btn-vimeo.disabled, .btn-vimeo:disabled, .show > .btn-vimeo.dropdown-toggle {
  color: #fff;
}
.btn-vimeo:hover:not(:disabled):not(.disabled), .btn-vimeo.hover:not(:disabled):not(.disabled) {
  color: #fff;
}

.btn-dribbble {
  --bs-btn-color: #fff;
  --bs-btn-bg: #ea4c89;
  --bs-btn-border-color: #ea4c89;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #c74174;
  --bs-btn-hover-border-color: #bb3d6e;
  --bs-btn-focus-shadow-rgb: 237, 103, 155;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #bb3d6e;
  --bs-btn-active-border-color: #b03967;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #ea4c89;
  --bs-btn-disabled-border-color: #ea4c89;
}
.btn-dribbble, .btn-dribbble:focus, .btn-dribbble.focus, .btn-dribbble.disabled, .btn-dribbble:disabled, .show > .btn-dribbble.dropdown-toggle {
  color: #fff;
}
.btn-dribbble:hover:not(:disabled):not(.disabled), .btn-dribbble.hover:not(:disabled):not(.disabled) {
  color: #fff;
}

.btn-github {
  --bs-btn-color: #fff;
  --bs-btn-bg: #181717;
  --bs-btn-border-color: #181717;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #141414;
  --bs-btn-hover-border-color: #131212;
  --bs-btn-focus-shadow-rgb: 59, 58, 58;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #131212;
  --bs-btn-active-border-color: #121111;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #181717;
  --bs-btn-disabled-border-color: #181717;
}
.btn-github, .btn-github:focus, .btn-github.focus, .btn-github.disabled, .btn-github:disabled, .show > .btn-github.dropdown-toggle {
  color: #fff;
}
.btn-github:hover:not(:disabled):not(.disabled), .btn-github.hover:not(:disabled):not(.disabled) {
  color: #fff;
}

.btn-instagram {
  --bs-btn-color: #fff;
  --bs-btn-bg: #e4405f;
  --bs-btn-border-color: #e4405f;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #c23651;
  --bs-btn-hover-border-color: #b6334c;
  --bs-btn-focus-shadow-rgb: 232, 93, 119;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #b6334c;
  --bs-btn-active-border-color: #ab3047;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #e4405f;
  --bs-btn-disabled-border-color: #e4405f;
}
.btn-instagram, .btn-instagram:focus, .btn-instagram.focus, .btn-instagram.disabled, .btn-instagram:disabled, .show > .btn-instagram.dropdown-toggle {
  color: #fff;
}
.btn-instagram:hover:not(:disabled):not(.disabled), .btn-instagram.hover:not(:disabled):not(.disabled) {
  color: #fff;
}

.btn-pinterest {
  --bs-btn-color: #fff;
  --bs-btn-bg: #bd081c;
  --bs-btn-border-color: #bd081c;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #a10718;
  --bs-btn-hover-border-color: #970616;
  --bs-btn-focus-shadow-rgb: 199, 45, 62;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #970616;
  --bs-btn-active-border-color: #8e0615;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #bd081c;
  --bs-btn-disabled-border-color: #bd081c;
}
.btn-pinterest, .btn-pinterest:focus, .btn-pinterest.focus, .btn-pinterest.disabled, .btn-pinterest:disabled, .show > .btn-pinterest.dropdown-toggle {
  color: #fff;
}
.btn-pinterest:hover:not(:disabled):not(.disabled), .btn-pinterest.hover:not(:disabled):not(.disabled) {
  color: #fff;
}

.btn-flickr {
  --bs-btn-color: #fff;
  --bs-btn-bg: #0063dc;
  --bs-btn-border-color: #0063dc;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0054bb;
  --bs-btn-hover-border-color: #004fb0;
  --bs-btn-focus-shadow-rgb: 38, 122, 225;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #004fb0;
  --bs-btn-active-border-color: #004aa5;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #0063dc;
  --bs-btn-disabled-border-color: #0063dc;
}
.btn-flickr, .btn-flickr:focus, .btn-flickr.focus, .btn-flickr.disabled, .btn-flickr:disabled, .show > .btn-flickr.dropdown-toggle {
  color: #fff;
}
.btn-flickr:hover:not(:disabled):not(.disabled), .btn-flickr.hover:not(:disabled):not(.disabled) {
  color: #fff;
}

.btn-bitbucket {
  --bs-btn-color: #fff;
  --bs-btn-bg: #0052cc;
  --bs-btn-border-color: #0052cc;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0046ad;
  --bs-btn-hover-border-color: #0042a3;
  --bs-btn-focus-shadow-rgb: 38, 108, 212;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0042a3;
  --bs-btn-active-border-color: #003e99;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #0052cc;
  --bs-btn-disabled-border-color: #0052cc;
}
.btn-bitbucket, .btn-bitbucket:focus, .btn-bitbucket.focus, .btn-bitbucket.disabled, .btn-bitbucket:disabled, .show > .btn-bitbucket.dropdown-toggle {
  color: #fff;
}
.btn-bitbucket:hover:not(:disabled):not(.disabled), .btn-bitbucket.hover:not(:disabled):not(.disabled) {
  color: #fff;
}

.btn-light, .btn-light:focus, .btn-light.focus, .btn-light.disabled, .btn-light:disabled, .show > .btn-light.dropdown-toggle,
.btn-white,
.btn-white:focus,
.btn-white.focus,
.btn-white.disabled,
.btn-white:disabled,
.show > .btn-white.dropdown-toggle {
  color: #343a40;
}
.btn-light:hover:not(:disabled):not(.disabled), .btn-light.hover:not(:disabled):not(.disabled),
.btn-white:hover:not(:disabled):not(.disabled),
.btn-white.hover:not(:disabled):not(.disabled) {
  color: #343a40;
}

.card {
  margin-bottom: 24px;
  box-shadow: 0 0 0.875rem 0 rgba(33, 37, 41, 0.05);
}

.card-header {
  border-bottom-width: 1px;
}

.card-title {
  font-size: 0.925rem;
  font-weight: 600;
  color: #939ba2;
}

.card-subtitle {
  font-weight: 400;
}

.card-img,
.card-img-top,
.card-img-bottom {
  max-width: 100%;
  height: auto;
}
@media all and (-ms-high-contrast: none) {
  .card-img,
  .card-img-top,
  .card-img-bottom {
    height: 100%;
  }
}

.card > .table > tbody tr:last-child td:first-child,
.card > .table > tbody tr:last-child th:first-child {
  border-bottom-left-radius: 0.25rem;
}
.card > .table > tbody tr:last-child td:last-child,
.card > .table > tbody tr:last-child th:last-child {
  border-bottom-right-radius: 0.25rem;
}

.chart {
  margin: auto;
  position: relative;
  width: 100%;
  min-height: 300px;
}
.chart-xs {
  min-height: 200px;
}
.chart-sm {
  min-height: 252px;
}
.chart-lg {
  min-height: 350px;
}
.chart-xl {
  min-height: 500px;
}
.chart canvas {
  max-width: 100%;
}

.content {
  padding: 1.5rem 1.5rem 0.75rem;
  flex: 1;
  width: 100vw;
  max-width: 100vw;
  direction: ltr;
}
@media (min-width: 768px) {
  .content {
    width: auto;
    max-width: auto;
  }
}
@media (min-width: 992px) {
  .content {
    padding: 3rem 3rem 1.5rem;
  }
}

.navbar-nav .dropdown-menu {
  box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.05);
}

.dropdown .dropdown-menu.show {
  animation-name: dropdownAnimation;
  animation-duration: 0.25s;
  animation-iteration-count: 1;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

@keyframes dropdownAnimation {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
.dropdown-toggle:after {
  border: solid;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 2px;
  transform: rotate(45deg);
}

.dropdown-item {
  transition: background 0.1s ease-in-out, color 0.1s ease-in-out;
}

.dropdown-menu {
  top: auto;
}

.dropdown-menu-lg {
  min-width: 20rem;
}

.dropdown .list-group .list-group-item {
  border-width: 0;
  border-bottom-width: 1px;
  margin-bottom: 0;
}
.dropdown .list-group .list-group-item:first-child, .dropdown .list-group .list-group-item:last-child {
  border-radius: 0;
}
.dropdown .list-group .list-group-item:hover {
  background: #f8f9fa;
}

.dropdown-menu-header {
  padding: 0.75rem;
  text-align: center;
  font-weight: 600;
  border-bottom: 1px solid #dee2e6;
}

.dropdown-menu-footer {
  padding: 0.5rem;
  text-align: center;
  display: block;
  font-size: 0.75rem;
}

.feather {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.feather-sm {
  width: 14px;
  height: 14px;
}

.feather-lg {
  width: 36px;
  height: 36px;
}

footer.footer {
  padding: 1rem 0.875rem;
  direction: ltr;
  background: #fff;
}
footer.footer ul {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  footer.footer {
    width: 100vw;
  }
}

.hamburger,
.hamburger:before,
.hamburger:after {
  cursor: pointer;
  border-radius: 1px;
  height: 3px;
  width: 24px;
  background: #495057;
  display: block;
  content: "";
  transition: background 0.1s ease-in-out, color 0.1s ease-in-out;
}

.hamburger {
  position: relative;
}

.hamburger:before {
  top: -7.5px;
  width: 24px;
  position: absolute;
}

.hamburger:after {
  bottom: -7.5px;
  width: 16px;
  position: absolute;
}

.sidebar-toggle:hover .hamburger,
.sidebar-toggle:hover .hamburger:before,
.sidebar-toggle:hover .hamburger:after {
  background: #3B7DDD;
}

.hamburger-right, .hamburger-right:before, .hamburger-right:after {
  right: 0;
}

a.list-group-item {
  text-decoration: none;
}

.main {
  display: flex;
  width: 100%;
  min-width: 0;
  min-height: 100vh;
  transition: margin-left 0.35s ease-in-out, left 0.35s ease-in-out, margin-right 0.35s ease-in-out, right 0.35s ease-in-out;
  background: #f5f7fb;
  flex-direction: column;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.navbar {
  border-bottom: 0;
  box-shadow: 0 0 2rem 0 rgba(33, 37, 41, 0.1);
}
@media (max-width: 767.98px) {
  .navbar {
    width: 100vw;
  }
}

.navbar .avatar {
  margin-top: -15px;
  margin-bottom: -15px;
}

.navbar-nav {
  direction: ltr;
}

.navbar-align {
  margin-left: auto;
}

.navbar-bg {
  background: #fff;
}

.navbar-brand {
  font-weight: 400;
  font-size: 1.15rem;
  padding: 0.875rem 0;
  color: #f8f9fa;
  display: block;
}
.navbar-brand svg,
.navbar-brand .feather {
  color: #3B7DDD;
  height: 24px;
  width: 24px;
  margin-left: -0.15rem;
  margin-right: 0.375rem;
  margin-top: -0.375rem;
}

.nav-icon,
.nav-flag {
  padding: 0.1rem 0.8rem;
  display: block;
  font-size: 1.5rem;
  color: #6c757d;
  transition: background 0.1s ease-in-out, color 0.1s ease-in-out;
  line-height: 1.4;
}
.nav-icon:after,
.nav-flag:after {
  display: none !important;
}
.nav-icon:hover, .nav-icon.active,
.nav-flag:hover,
.nav-flag.active {
  color: #3B7DDD;
}
.nav-icon svg,
.nav-icon .feather,
.nav-flag svg,
.nav-flag .feather {
  width: 20px;
  height: 20px;
}

.nav-item .indicator {
  background: #3B7DDD;
  box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: block;
  height: 18px;
  width: 18px;
  padding: 1px;
  position: absolute;
  top: 0;
  right: -8px;
  text-align: center;
  transition: top 0.1s ease-out;
  font-size: 0.675rem;
  color: #fff;
}
.nav-item:hover .indicator {
  top: -4px;
}
.nav-item a:focus {
  outline: 0;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .navbar .avatar {
    max-height: 47px;
  }
}
@media (max-width: 575.98px) {
  .navbar {
    padding: 0.75rem;
  }
  .nav-icon {
    padding: 0.1rem 0.75rem;
  }
  .dropdown,
  .dropleft,
  .dropright,
  .dropup {
    position: inherit;
  }
  .navbar-expand .navbar-nav .dropdown-menu-lg {
    min-width: 100%;
  }
  .nav-item .nav-link:after {
    display: none;
  }
}
.nav-flag img {
  border-radius: 50%;
  width: 20px;
  height: 20px;
  object-fit: cover;
}

.navbar input {
  direction: ltr;
}

body, html, #root {
  height: 100%;
}

body {
  overflow-y: scroll;
  opacity: 1 !important;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  html {
    overflow-x: hidden;
  }
}
.sidebar {
  min-width: 260px;
  max-width: 260px;
  transition: margin-left 0.35s ease-in-out, left 0.35s ease-in-out, margin-right 0.35s ease-in-out, right 0.35s ease-in-out;
  direction: ltr;
  background: #222E3C;
}

.sidebar-content {
  transition: margin-left 0.35s ease-in-out, left 0.35s ease-in-out, margin-right 0.35s ease-in-out, right 0.35s ease-in-out;
  display: flex;
  height: 100%;
  min-height: 100vh;
  flex-direction: column;
  background: #222E3C;
}

.sidebar-nav {
  padding-left: 0;
  margin-top: 25px;
  margin-bottom: 0;
  list-style: none;
  flex-grow: 1;
}

.sidebar-link,
a.sidebar-link {
  display: block;
  padding: 0.625rem 1.625rem;
  position: relative;
  text-decoration: none;
  cursor: pointer;
  border-left-style: solid;
  border-left-width: 3px;
  color: rgba(233, 236, 239, 0.5);
  background: #222E3C;
  border-left-color: transparent;
}
.sidebar-link i,
.sidebar-link svg,
a.sidebar-link i,
a.sidebar-link svg {
  margin-right: 0.8rem;
  color: rgba(233, 236, 239, 0.5);
}

.sidebar-link:focus {
  outline: 0;
}

.sidebar-link:hover {
  color: rgba(233, 236, 239, 0.75);
  background: #222E3C;
  border-left-color: transparent;
}
.sidebar-link:hover i,
.sidebar-link:hover svg {
  color: rgba(233, 236, 239, 0.75);
}

.sidebar-item.active > .sidebar-link,
.sidebar-item.active .sidebar-link:hover {
  color: #e9ecef;
  background: linear-gradient(90deg, rgba(59, 125, 221, 0.1) 0%, rgba(59, 125, 221, 0.0875) 50%, rgba(0, 0, 0, 0) 100%);
  border-left-color: #3B7DDD;
}
.sidebar-item.active > .sidebar-link i,
.sidebar-item.active > .sidebar-link svg,
.sidebar-item.active .sidebar-link:hover i,
.sidebar-item.active .sidebar-link:hover svg {
  color: #e9ecef;
}

.sidebar-brand {
  font-weight: 600;
  font-size: 1.15rem;
  padding: 1.15rem 1.5rem;
  display: block;
  color: #f8f9fa;
}
.sidebar-brand:hover {
  text-decoration: none;
  color: #f8f9fa;
}
.sidebar-brand:focus {
  outline: 0;
}

.sidebar-toggle {
  cursor: pointer;
  width: 26px;
  height: 26px;
  display: flex;
}

.sidebar.collapsed {
  margin-left: -260px;
}
@media (min-width: 1px) and (max-width: 991.98px) {
  .sidebar {
    margin-left: -260px;
  }
  .sidebar.collapsed {
    margin-left: 0;
  }
}

.main.collapsed {
  margin-left: 0 !important;
}

.sidebar-toggle {
  margin-right: 1rem;
}

.sidebar-header {
  background: transparent;
  padding: 1.5rem 1.5rem 0.375rem;
  font-size: 0.75rem;
  color: #ced4da;
}

.sidebar-badge {
  position: absolute;
  right: 15px;
  top: 14px;
  z-index: 1;
}

.sidebar-cta-content {
  padding: 1.5rem;
  margin: 1.75rem;
  border-radius: 0.3rem;
  background: #2B3947;
  color: #e9ecef;
}

.min-vw-50 {
  min-width: 50vw !important;
}

.min-vh-50 {
  min-height: 50vh !important;
}

.vw-50 {
  width: 50vw !important;
}

.vh-50 {
  height: 50vh !important;
}

.stat {
  background: #d3e2f7;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  display: flex;
}
.stat svg {
  width: 18px;
  height: 18px;
  color: #3B7DDD !important;
  stroke-width: 1.5;
}

.table thead, .table tbody, .table tfoot, .table tr, .table td, .table th {
  border-color: var(--bs-border-color);
}
.table > :not(:last-child) > :last-child > * {
  border-color: var(--bs-border-color);
}

.table > tbody > tr > td {
  vertical-align: middle;
}

.text-sm {
  font-size: 0.75rem;
}

.text-lg {
  font-size: 0.925rem;
}

b, strong {
  font-weight: 600;
}

pre.snippet {
  white-space: pre-wrap;
  word-wrap: break-word;
  text-align: justify;
}

a {
  cursor: pointer;
}

.wrapper {
  align-items: stretch;
  display: flex;
  width: 100%;
  background: #fff;
}

.cursor-grab {
  cursor: move;
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}

.cursor-pointer {
  cursor: pointer;
}

[data-simplebar] {
  position: relative;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}

.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}

.simplebar-offset {
  direction: inherit !important;
  box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}

.simplebar-content-wrapper {
  direction: inherit;
  box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%; /* Required for horizontal native scrollbar to not appear if parent is taller than natural height */
  width: auto;
  max-width: 100%; /* Not required for horizontal scroll to trigger */
  max-height: 100%; /* Needed for vertical scroll to trigger */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.simplebar-content:before,
.simplebar-content:after {
  content: " ";
  display: table;
}

.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}

.simplebar-height-auto-observer-wrapper {
  box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  flex-grow: inherit;
  flex-shrink: 0;
  flex-basis: 0;
}

.simplebar-height-auto-observer {
  box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

[data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all;
}

.simplebar-scrollbar {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 10px;
}

.simplebar-scrollbar:before {
  position: absolute;
  content: "";
  background: black;
  border-radius: 7px;
  left: 2px;
  right: 2px;
  opacity: 0;
  transition: opacity 0.2s linear;
}

.simplebar-scrollbar.simplebar-visible:before {
  /* When hovered, remove all transitions from drag handle */
  opacity: 0.5;
  transition: opacity 0s linear;
}

.simplebar-track.simplebar-vertical {
  top: 0;
  width: 11px;
}

.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px;
}

.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
  height: 100%;
  left: 2px;
  right: 2px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 2px;
  height: 7px;
  min-height: 0;
  min-width: 10px;
  width: auto;
}

/* Rtl support */
[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0;
}

.hs-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll;
}

.simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.flatpickr-calendar.inline {
  background: transparent;
  box-shadow: none;
  width: 100%;
}
.flatpickr-calendar.inline .flatpickr-days {
  width: 100%;
}
.flatpickr-calendar.inline .dayContainer {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}
.flatpickr-calendar.inline .flatpickr-day {
  border-radius: 0.2rem;
  max-width: inherit;
  height: 45px;
  line-height: 45px;
}
.flatpickr-calendar.inline .flatpickr-day.today {
  border: 0;
}
.flatpickr-calendar.inline .flatpickr-day.today:before {
  content: "";
  display: inline-block;
  border-color: rgba(0, 0, 0, 0.2) transparent #3B7DDD;
  border-style: solid;
  border-width: 0 0 7px 7px;
  position: absolute;
  bottom: 4px;
  right: 4px;
}
.flatpickr-calendar.inline .flatpickr-day.today.selected:before {
  border-color: rgba(0, 0, 0, 0.2) transparent #fff;
}
.flatpickr-calendar.inline .flatpickr-day.today:hover {
  background: #e6e6e6;
  color: #000;
}
.flatpickr-calendar.inline .flatpickr-day.selected, .flatpickr-calendar.inline .flatpickr-day.selected:hover, .flatpickr-calendar.inline .flatpickr-day.selected:focus {
  border-radius: 0.2rem;
  background: #3B7DDD;
  color: #fff;
}
.flatpickr-calendar.inline .flatpickr-weekdays {
  height: 45px;
}
.flatpickr-calendar.inline .flatpickr-weekday {
  height: 45px;
  line-height: 45px;
}
.flatpickr-calendar.inline .flatpickr-months .flatpickr-month {
  height: 45px;
}
.flatpickr-calendar.inline .flatpickr-months .flatpickr-prev-month,
.flatpickr-calendar.inline .flatpickr-months .flatpickr-next-month {
  height: 45px;
}
.flatpickr-calendar.inline .flatpickr-current-month {
  padding-top: 0;
  line-height: 45px;
  height: 45px;
}
.flatpickr-calendar.inline .flatpickr-current-month .flatpickr-monthDropdown-months {
  appearance: none;
}
.flatpickr-calendar.inline .flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-calendar.inline .flatpickr-current-month input.cur-year {
  font-weight: 400;
  font-size: 1.09375rem;
}
.flatpickr-calendar.inline .flatpickr-prev-month,
.flatpickr-calendar.inline .flatpickr-next-month {
  width: 45px;
  border-radius: 0.2rem;
}
.flatpickr-calendar.inline .flatpickr-prev-month:hover,
.flatpickr-calendar.inline .flatpickr-next-month:hover {
  background: #e6e6e6;
  color: #000;
}

.simplebar-scrollbar:before {
  background: #fff;
}

.simplebar-content {
  display: flex;
  flex-direction: column;
  height: 100vh;
  padding-bottom: 0 !important;
}

[data-simplebar] {
  position: sticky;
  top: 0;
  left: 0;
  width: 260px;
}

.es-efs-external-user-perm {
  margin-top: 12px;
}

.es-efs-permissions {
  height: calc(100vh - 460px);
  position: relative;
  overflow-y: auto;
  min-height: 460px;
}
.es-efs-permissions .es-efs-group-perm, .es-efs-permissions .es-efs-external-user-perm {
  margin-bottom: 12px;
}
.es-efs-permissions .es-efs-group-perm .es-datatable.es-permissions-table table.table thead tr th:not(:first-child), .es-efs-permissions .es-efs-external-user-perm .es-datatable.es-permissions-table table.table thead tr th:not(:first-child) {
  background-color: transparent;
  border-bottom: none;
  text-align: center;
}
.es-efs-permissions .es-efs-group-perm .es-datatable.es-permissions-table table.table thead tr th:first-child, .es-efs-permissions .es-efs-external-user-perm .es-datatable.es-permissions-table table.table thead tr th:first-child {
  background-color: transparent;
  border-bottom: none;
  text-align: center;
  text-align: left;
  width: 55%;
  display: table-cell;
}
.es-efs-permissions .es-efs-group-perm .es-datatable.es-permissions-table table.table tbody tr td:not(:first-child), .es-efs-permissions .es-efs-external-user-perm .es-datatable.es-permissions-table table.table tbody tr td:not(:first-child) {
  text-align: center;
  border-bottom: none;
}
.es-efs-permissions .es-efs-group-perm .es-datatable.es-permissions-table table.table tbody tr td:not(:first-child) .es-input-check, .es-efs-permissions .es-efs-external-user-perm .es-datatable.es-permissions-table table.table tbody tr td:not(:first-child) .es-input-check {
  margin-right: 0;
}
.es-efs-permissions .es-efs-group-perm .es-datatable.es-permissions-table table.table tbody tr td:first-child, .es-efs-permissions .es-efs-external-user-perm .es-datatable.es-permissions-table table.table tbody tr td:first-child {
  border-bottom: none;
}
.es-efs-permissions .es-efs-group-perm .es-datatable.es-permissions-table table.table tbody tr td:first-child .group-name, .es-efs-permissions .es-efs-external-user-perm .es-datatable.es-permissions-table table.table tbody tr td:first-child .group-name {
  max-width: 99%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow-x: hidden;
  white-space: pre;
}
.es-efs-permissions .es-efs-group-perm .es-datatable.es-permissions-table, .es-efs-permissions .es-efs-external-user-perm .es-datatable.es-permissions-table {
  margin-top: -38px;
  padding-left: 22px;
}
.es-efs-permissions .es-efs-group-perm .es-accordion .es-accordion-head, .es-efs-permissions .es-efs-external-user-perm .es-accordion .es-accordion-head {
  list-style: none;
  background-color: #f8f9fa;
  font-weight: 500;
  color: #495057;
  height: 40px;
  align-items: center;
  padding: 0 8px;
}
.es-efs-permissions .es-efs-group-perm .es-accordion .es-accordion-head .es-accordion-head-txt, .es-efs-permissions .es-efs-external-user-perm .es-accordion .es-accordion-head .es-accordion-head-txt {
  max-width: 50%;
}
.es-efs-permissions .es-efs-group-perm .es-accordion .es-accordion-head .es-accordion-head-txt .es-accordion-subtitle, .es-efs-permissions .es-efs-external-user-perm .es-accordion .es-accordion-head .es-accordion-head-txt .es-accordion-subtitle {
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
  margin-left: 8px;
  display: block;
  margin-top: 1px;
  max-width: 99%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow-x: hidden;
}
.es-efs-permissions .es-efs-group-perm .es-accordion:not([open]) .es-accordion-head::before, .es-efs-permissions .es-efs-external-user-perm .es-accordion:not([open]) .es-accordion-head::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M11.9999 13.1714L16.9497 8.22168L18.3639 9.63589L11.9999 15.9999L5.63599 9.63589L7.0502 8.22168L11.9999 13.1714Z'%3E%3C/path%3E%3C/svg%3E");
  width: 16px;
  height: 16px;
  display: block;
  margin-right: 4px;
}
.es-efs-permissions .es-efs-group-perm .es-accordion[open] .es-accordion-head::before, .es-efs-permissions .es-efs-external-user-perm .es-accordion[open] .es-accordion-head::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M11.9999 10.8284L7.0502 15.7782L5.63599 14.364L11.9999 8L18.3639 14.364L16.9497 15.7782L11.9999 10.8284Z'%3E%3C/path%3E%3C/svg%3E");
  width: 16px;
  height: 16px;
  display: block;
  margin-right: 4px;
}
.es-efs-permissions .es-efs-group-perm .es-accordion .es-accordion-body, .es-efs-permissions .es-efs-external-user-perm .es-accordion .es-accordion-body {
  margin: 0;
}
.es-efs-permissions .es-efs-user-perm.es-efs-perm-nofilters, .es-efs-permissions .es-efs-external-user-perm.es-efs-perm-nofilters {
  margin-top: 16px;
}
.es-efs-permissions .es-efs-user-perm .es-permissions-filter, .es-efs-permissions .es-efs-external-user-perm .es-permissions-filter {
  margin-top: 16px;
  padding-left: 28px;
}
.es-efs-permissions .es-efs-user-perm .es-permissions-filter .dataTables_filter .form-control, .es-efs-permissions .es-efs-external-user-perm .es-permissions-filter .dataTables_filter .form-control {
  width: 208px;
}
.es-efs-permissions .es-efs-user-perm .es-permissions-filter .es-efs-perm-remove.cu-filter-block, .es-efs-permissions .es-efs-external-user-perm .es-permissions-filter .es-efs-perm-remove.cu-filter-block {
  position: static;
  margin: 0 10px 0 0 !important;
}
.es-efs-permissions .es-efs-user-perm .es-permissions-filter .es-efs-perm-remove.cu-filter-block:hover, .es-efs-permissions .es-efs-external-user-perm .es-permissions-filter .es-efs-perm-remove.cu-filter-block:hover {
  background-color: #dc3545;
}
.es-efs-permissions .es-efs-user-perm .es-permissions-filter .es-efs-perm-remove.cu-filter-block:hover i.ri-close-circle-fill, .es-efs-permissions .es-efs-external-user-perm .es-permissions-filter .es-efs-perm-remove.cu-filter-block:hover i.ri-close-circle-fill {
  color: #ffffff;
}
.es-efs-permissions .es-efs-user-perm .es-permissions-filter .es-efs-perm-remove.cu-filter-block:hover i.ri-close-circle-fill:hover, .es-efs-permissions .es-efs-external-user-perm .es-permissions-filter .es-efs-perm-remove.cu-filter-block:hover i.ri-close-circle-fill:hover {
  color: #ffffff !important;
}
.es-efs-permissions .es-efs-user-perm .es-permissions-filter .es-efs-perm-add.cu-filter-block, .es-efs-permissions .es-efs-external-user-perm .es-permissions-filter .es-efs-perm-add.cu-filter-block {
  position: static;
  margin: 0;
}
.es-efs-permissions .es-efs-user-perm .es-permissions-filter .es-efs-perm-add.cu-filter-block:hover, .es-efs-permissions .es-efs-external-user-perm .es-permissions-filter .es-efs-perm-add.cu-filter-block:hover {
  background-color: #F7813D;
}
.es-efs-permissions .es-efs-user-perm .es-permissions-filter .es-efs-perm-add.cu-filter-block:hover i.ri-add-line, .es-efs-permissions .es-efs-external-user-perm .es-permissions-filter .es-efs-perm-add.cu-filter-block:hover i.ri-add-line {
  color: #ffffff;
}
.es-efs-permissions .es-efs-user-perm .es-datatable.es-permissions-table table.table thead tr th:not(:first-child), .es-efs-permissions .es-efs-external-user-perm .es-datatable.es-permissions-table table.table thead tr th:not(:first-child) {
  background-color: transparent;
  border-bottom: none;
  text-align: center;
}
.es-efs-permissions .es-efs-user-perm .es-datatable.es-permissions-table table.table thead tr th:first-child, .es-efs-permissions .es-efs-external-user-perm .es-datatable.es-permissions-table table.table thead tr th:first-child {
  background-color: transparent;
  border-bottom: none;
  text-align: center;
  text-align: left;
  width: 55%;
  display: table-cell;
}
.es-efs-permissions .es-efs-user-perm .es-datatable.es-permissions-table table.table thead tr th:first-child .es-efs-col-head-txt, .es-efs-permissions .es-efs-external-user-perm .es-datatable.es-permissions-table table.table thead tr th:first-child .es-efs-col-head-txt {
  margin-bottom: 0;
}
.es-efs-permissions .es-efs-user-perm .es-datatable.es-permissions-table table.table thead tr th:first-child .es-efs-perm-select.es-input-check, .es-efs-permissions .es-efs-external-user-perm .es-datatable.es-permissions-table table.table thead tr th:first-child .es-efs-perm-select.es-input-check {
  margin: 0 12px 0 0;
}
.es-efs-permissions .es-efs-user-perm .es-datatable.es-permissions-table table.table tbody tr td:not(:first-child), .es-efs-permissions .es-efs-external-user-perm .es-datatable.es-permissions-table table.table tbody tr td:not(:first-child) {
  text-align: center;
  border-bottom: none;
}
.es-efs-permissions .es-efs-user-perm .es-datatable.es-permissions-table table.table tbody tr td:not(:first-child) .es-input-check, .es-efs-permissions .es-efs-external-user-perm .es-datatable.es-permissions-table table.table tbody tr td:not(:first-child) .es-input-check {
  margin-right: 0;
}
.es-efs-permissions .es-efs-user-perm .es-datatable.es-permissions-table table.table tbody tr td:first-child, .es-efs-permissions .es-efs-external-user-perm .es-datatable.es-permissions-table table.table tbody tr td:first-child {
  border-bottom: none;
}
.es-efs-permissions .es-efs-user-perm .es-datatable.es-permissions-table table.table tbody tr td:first-child .es-efs-perm-select.es-input-check, .es-efs-permissions .es-efs-external-user-perm .es-datatable.es-permissions-table table.table tbody tr td:first-child .es-efs-perm-select.es-input-check {
  margin: 0 12px 0 0;
}
.es-efs-permissions .es-efs-user-perm .es-datatable.es-permissions-table, .es-efs-permissions .es-efs-external-user-perm .es-datatable.es-permissions-table {
  padding-left: 22px;
}
.es-efs-permissions .es-efs-user-perm .es-datatable.es-permissions-table .user-name-pic, .es-efs-permissions .es-efs-external-user-perm .es-datatable.es-permissions-table .user-name-pic {
  display: flex;
  align-items: center;
}
.es-efs-permissions .es-efs-user-perm .es-datatable.es-permissions-table .user-name-pic .user-pic, .es-efs-permissions .es-efs-external-user-perm .es-datatable.es-permissions-table .user-name-pic .user-pic {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #dee2e7;
  margin-right: 12px;
}
.es-efs-permissions .es-efs-user-perm .es-datatable.es-permissions-table .user-name-pic .user-pic .user-default, .es-efs-permissions .es-efs-external-user-perm .es-datatable.es-permissions-table .user-name-pic .user-pic .user-default {
  font-size: 16px;
}
.es-efs-permissions .es-efs-user-perm .es-datatable.es-permissions-table .user-name-pic .user-pic .user-default:hover, .es-efs-permissions .es-efs-external-user-perm .es-datatable.es-permissions-table .user-name-pic .user-pic .user-default:hover {
  color: #868E96;
}
.es-efs-permissions .es-efs-user-perm .es-accordion .es-accordion-head, .es-efs-permissions .es-efs-external-user-perm .es-accordion .es-accordion-head {
  list-style: none;
  background-color: #f8f9fa;
  font-weight: 500;
  color: #495057;
  height: 40px;
  align-items: center;
  padding: 0 8px;
}
.es-efs-permissions .es-efs-user-perm .es-accordion .es-accordion-head .es-accordion-head-txt, .es-efs-permissions .es-efs-external-user-perm .es-accordion .es-accordion-head .es-accordion-head-txt {
  max-width: 50%;
}
.es-efs-permissions .es-efs-user-perm .es-accordion .es-accordion-head .es-accordion-head-txt .es-accordion-subtitle, .es-efs-permissions .es-efs-external-user-perm .es-accordion .es-accordion-head .es-accordion-head-txt .es-accordion-subtitle {
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
  margin-left: 8px;
  display: block;
  margin-top: 1px;
  max-width: 99%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow-x: hidden;
}
.es-efs-permissions .es-efs-user-perm .es-accordion:not([open]) .es-accordion-head::before, .es-efs-permissions .es-efs-external-user-perm .es-accordion:not([open]) .es-accordion-head::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M11.9999 13.1714L16.9497 8.22168L18.3639 9.63589L11.9999 15.9999L5.63599 9.63589L7.0502 8.22168L11.9999 13.1714Z'%3E%3C/path%3E%3C/svg%3E");
  width: 16px;
  height: 16px;
  display: block;
  margin-right: 4px;
}
.es-efs-permissions .es-efs-user-perm .es-accordion[open] .es-accordion-head::before, .es-efs-permissions .es-efs-external-user-perm .es-accordion[open] .es-accordion-head::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M11.9999 10.8284L7.0502 15.7782L5.63599 14.364L11.9999 8L18.3639 14.364L16.9497 15.7782L11.9999 10.8284Z'%3E%3C/path%3E%3C/svg%3E");
  width: 16px;
  height: 16px;
  display: block;
  margin-right: 4px;
}
.es-efs-permissions .es-efs-user-perm .es-accordion .es-accordion-body, .es-efs-permissions .es-efs-external-user-perm .es-accordion .es-accordion-body {
  margin: 0;
}
.es-efs-permissions .es-efs-tab-footer {
  margin-top: 28px;
  border-top: 1px solid #DEE2E6;
  padding-top: 12px;
  position: sticky;
  bottom: 0px;
  background-color: #fff;
}
.es-efs-permissions .es-efs-tab-footer .es-btn-cancel {
  margin-right: 0.34rem;
}
.es-efs-permissions .es-not-found {
  border: 1px solid #dee2e6;
  margin-top: 25px !important;
  max-width: calc(100% - 56px);
  margin: auto;
}

.es-efs-permissions .es-efs-external-user-perm .es-accordion.es-client-user-permission-head .es-accordion-head:before {
  display: none !important;
}

.es-efs-permissions .es-efs-external-user-perm .es-accordion.es-client-user-permission-head .es-accordion-head {
  padding-left: 28px;
}

/* width */
.es-efs-permissions::-webkit-scrollbar {
  width: 8px;
}

/* Track */
.es-efs-permissions::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
.es-efs-permissions::-webkit-scrollbar-thumb {
  background: #c1c1c1;
}

div#reviewHours-filter .form-control {
  min-width: 170px;
}

.es-approved-icons {
  background-color: #fff;
  border: 1px solid #E9ECEF;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-weight: 600;
}

.es-approved-icons i.ri-close-line {
  color: #FF6B6B;
}

.es-approved-icons i.ri-check-line {
  color: #51CF66;
}

.text-grey {
  color: #868E96;
}

.es-share-login-container {
  background-color: #F6FBFF;
  position: relative;
  padding: 28px 24px;
  height: 100%;
  width: 100%;
}
.es-share-login-container .es-sso-login-bg {
  position: absolute;
  top: 124px;
  left: 88px;
}
.es-share-login-container .es-page-head {
  width: 108px;
  height: 37px;
  margin-bottom: 107px;
}
.es-share-login-container .es-page-head img {
  width: 100%;
  height: 100%;
}
.es-share-login-container .es-page-body .es-body-content {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  height: 486px;
  width: 1058px;
  border-radius: 4px;
  box-shadow: 0px 4px 24px 0px #E6F4FF;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.es-share-login-container .es-page-body .es-body-content .es-illustration-wrap {
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 50%;
}
.es-share-login-container .es-page-body .es-body-content .es-illustration-wrap .es-sso-login-illustration {
  width: 408px;
}
.es-share-login-container .es-page-body .es-body-content .es-form-wrap {
  background-color: #FAFBFC;
  height: 100%;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 48px;
}
.es-share-login-container .es-page-body .es-body-content .es-form-wrap .es-form-group .es-field-label {
  font-weight: 500;
  font-size: 24px;
  color: #343A40;
  margin-bottom: 8px;
}
.es-share-login-container .es-page-body .es-body-content .es-form-wrap .es-form-group .es-label-subtxt {
  font-size: 13px;
  color: #495057;
  margin-bottom: 28px;
}
.es-share-login-container .es-page-body .es-body-content .es-form-wrap .es-form-group .es-form-field {
  border: 1px solid #CED4DA;
  height: 40px;
  width: 100%;
  padding: 12px;
}
.es-share-login-container .es-page-body .es-body-content .es-form-wrap .es-form-group .es-form-field::placeholder {
  color: #868E96;
  font-size: 13px;
}
.es-share-login-container .es-page-body .es-body-content .es-form-wrap .es-form-group .es-field-error {
  font-size: 13px;
  color: #FB3939;
}
.es-share-login-container .es-page-body .es-body-content .es-form-wrap .es-cta-wrap {
  text-align: right;
  margin-top: 2px;
}
.es-share-login-container .es-page-body .es-body-content .es-form-wrap .es-cta-wrap .es-login-btn {
  color: #ffffff;
  border-radius: 2px;
  background-color: #F7813D;
  height: 30px;
  line-height: 28px;
  border: none;
  width: 69px;
}
.es-share-login-container .es-sso-login-bg-sm {
  position: absolute;
  bottom: 58px;
  right: 128px;
}
.es-share-login-container .es-post-login-wrap {
  background-color: #ffffff;
  box-shadow: 0px 4px 24px 0px #E6F4FF;
  border-radius: 4px;
  width: 572px;
  height: 364px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.es-share-login-container .es-post-login-wrap .es-sec-body {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.es-share-login-container .es-post-login-wrap .es-sec-body .es-main-msg {
  margin: 12px 0 4px;
  font-size: 24px;
  color: #343A40;
  font-weight: 500;
}
.es-share-login-container .es-post-login-wrap .es-sec-body .es-sub-msg {
  font-size: 13px;
  color: #495057;
}

@media only screen and (max-width: 768px) {
  .es-share-login-container .es-post-login-wrap {
    width: calc(100% - 32px);
  }
}
.es-publish {
  color: #0CA678;
}

.es-scheduled {
  color: #868d96;
}

.es-open {
  color: #0CA678;
}

.es-close {
  color: #dc3545;
}

.es-green {
  color: #1cbb8c;
}

.es-start-date {
  color: #343A40;
  opacity: 0.4;
}

.bg-warning {
  color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
  background-color: transparent !important;
}

.bg-success {
  color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
  background-color: transparent !important;
}

.bg-danger {
  color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
  background-color: transparent !important;
}

i {
  color: #868E96;
}

.es-no-data-available h4, .es-no-data-available .h4 {
  color: #9d9c9c;
}

label {
  color: #212529;
  font-weight: 500;
}

.ri-error-warning-line {
  color: #dc3545;
}

/*Adjustments*/
.btn:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25) !important;
}

*:disabled,
.disabled {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  opacity: 0.75;
  cursor: not-allowed;
}

.alias {
  cursor: alias;
}

.all-scroll {
  cursor: all-scroll;
}

.auto {
  cursor: auto;
}

.cell {
  cursor: cell;
}

.context-menu {
  cursor: context-menu;
}

.col-resize {
  cursor: col-resize;
}

h3, .h3 {
  font-size: 14px;
}

.wrapper {
  height: 100vh !important;
}

.es-cr-bordertop {
  border-top: 1px dotted #b5b1b1;
  margin-top: 10px;
  padding-top: 16px;
}

.es-cr-borderbottom {
  border-bottom: 1px dotted #b5b1b1;
  margin-bottom: 19px;
  padding-bottom: 0px;
}

.copy {
  cursor: copy;
}

.crosshair {
  cursor: crosshair;
}

.default {
  cursor: default;
}

.e-resize {
  cursor: e-resize;
}

.ew-resize {
  cursor: ew-resize;
}

.grab {
  cursor: grab;
}

.grabbing {
  cursor: grabbing;
}

.help {
  cursor: help;
}

.move {
  cursor: move;
}

.n-resize {
  cursor: n-resize;
}

.ne-resize {
  cursor: ne-resize;
}

.nesw-resize {
  cursor: nesw-resize;
}

.ns-resize {
  cursor: ns-resize;
}

.nw-resize {
  cursor: nw-resize;
}

.nwse-resize {
  cursor: nwse-resize;
}

.no-drop {
  cursor: no-drop;
}

.none {
  cursor: none;
}

.not-allowed {
  cursor: not-allowed !important;
}

.pointer {
  cursor: pointer;
}

.progress {
  border-radius: 2px;
}

.row-resize {
  cursor: row-resize;
}

.s-resize {
  cursor: s-resize;
}

.se-resize {
  cursor: se-resize;
}

.sw-resize {
  cursor: sw-resize;
}

.text {
  cursor: text;
}

.url {
  cursor: url(myBall.cur), auto;
}

.w-resize {
  cursor: w-resize;
}

.wait {
  cursor: wait;
}

.zoom-in {
  cursor: zoom-in;
}

.zoom-out {
  cursor: zoom-out;
}

.scrollable-div {
  overflow-y: auto;
}

.es-scrollable-div {
  overflow-y: auto;
}
.es-scrollable-div:hover::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.4);
  opacity: 0.41;
}

.es-scrollable-div::-webkit-scrollbar-track {
  background: none;
  margin-left: 5px;
}

.es-scrollable-div::-webkit-scrollbar {
  width: 7px;
  height: 0;
  margin-left: 5px;
}

.es-scrollable-div::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.125);
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
}

.es-scrollable-div::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.5);
}

.ht-m100 {
  max-height: 100px;
}

.ht-m120 {
  max-height: 120px;
}

.ht-m140 {
  max-height: 140px;
}

.ht-m160 {
  max-height: 160px;
}

.ht-m170 {
  max-height: 170px;
}

.ht-m180 {
  max-height: 180px;
}

.ht-m200 {
  max-height: 200px;
}

.ht-m250 {
  max-height: 250px;
}

.ht-m300 {
  max-height: 300px;
}

.ht-m400 {
  max-height: 400px;
}

.ht-m500 {
  max-height: 500px;
}

.ht-m600 {
  max-height: 600px;
}

.ht-m700 {
  max-height: 700px;
}

.ht-m800 {
  max-height: 800px;
}

.ht-m900 {
  max-height: 900px;
}

.ht-10 {
  height: 10px;
}

.ht-20 {
  height: 20px;
}

.ht-30 {
  height: 30px;
}

.ht-40 {
  height: 40px;
}

.ht-50 {
  height: 50px;
}

.ht-60 {
  height: 60px;
}

.ht-70 {
  height: 70px;
}

.ht-80 {
  height: 80px;
}

.ht-90 {
  height: 90px;
}

.ht-100 {
  height: 100px;
}

.ht-120 {
  height: 120px;
}

.ht-130 {
  height: 130px;
}

.ht-140 {
  height: 140px;
}

.ht-150 {
  height: 150px;
}

.ht-160 {
  height: 160px;
}

.ht-170 {
  height: 170px;
}

.ht-180 {
  height: 180px;
}

.ht-200 {
  height: 200px;
}

.ht-220 {
  height: 220px;
}

.ht-230 {
  height: 230px;
}

.ht-240 {
  height: 240px;
}

.ht-250 {
  height: 250px;
}

.ht-260 {
  height: 260px;
}

.ht-270 {
  height: 270px;
}

.ht-300 {
  height: 300px;
}

.ht-350 {
  height: 350px;
}

.ht-400 {
  height: 400px;
}

.ht-500 {
  height: 500px;
}

.ht-600 {
  height: 600px;
}

.ht-700 {
  height: 700px;
}

.ht-800 {
  height: 800px;
}

.ht-900 {
  height: 900px;
}

.mh-60 {
  min-height: 60px;
}

.mh-70 {
  min-height: 70px;
}

.mh-80 {
  min-height: 80px;
}

.mh-90 {
  min-height: 90px;
}

.mh-100 {
  min-height: 100px;
}

.mh-110 {
  min-height: 110px;
}

.mh-120 {
  min-height: 120px;
}

.mh-130 {
  min-height: 130px;
}

.mh-140 {
  min-height: 140px;
}

.mh-150 {
  min-height: 150px;
}

.mh-160 {
  min-height: 160px;
}

.mh-170 {
  min-height: 170px;
}

.mh-180 {
  min-height: 180px;
}

.mh-190 {
  min-height: 190px;
}

.mh-200 {
  min-height: 200px;
}

.mh-210 {
  min-height: 210px;
}

.w-50 {
  width: 50%;
}

.wt-10 {
  width: 10px;
}

.wt-20 {
  width: 20px;
}

.wt-30 {
  width: 30px;
}

.wt-40 {
  width: 40px;
}

.wt-50 {
  width: 50px;
}

.wt-60 {
  width: 60px;
}

.wt-70 {
  width: 70px;
}

.wt-80 {
  width: 80px;
}

.wt-90 {
  width: 90px;
}

.wt-100 {
  width: 100px;
}

.wt-110 {
  width: 110px;
}

.wt-120 {
  width: 120px;
}

.wt-130 {
  width: 130px;
}

.wt-140 {
  width: 140px;
}

.wt-150 {
  width: 150px;
}

.wt-160 {
  width: 160px;
}

.wt-180 {
  width: 180px;
}

.wt-200 {
  width: 200px;
}

.wt-220 {
  width: 220px;
}

.wt-230 {
  width: 230px;
}

.wt-240 {
  width: 240px;
}

.wt-250 {
  width: 250px;
}

.wt-260 {
  width: 260px;
}

.wt-270 {
  width: 270px;
}

.wt-300 {
  width: 300px;
}

.wt-310 {
  width: 310px;
}

.wt-320 {
  width: 320px;
}

.wt-330 {
  width: 330px;
}

.wt-340 {
  width: 340px;
}

.wt-350 {
  width: 350px;
}

.wt-400 {
  width: 400px;
}

.wt-450 {
  width: 450px;
}

.wt-500 {
  width: 500px;
}

.wt-600 {
  width: 600px;
}

.wt-700 {
  width: 700px;
}

.wt-800 {
  width: 800px;
}

.wt-900 {
  width: 900px;
}

.mw-60 {
  min-width: 60px;
}

.mw-70 {
  min-width: 70px;
}

.mw-80 {
  min-width: 80px;
}

.mw-90 {
  min-width: 90px;
}

.mw-100 {
  min-width: 100px;
}

.mw-110 {
  min-width: 110px;
}

.mw-120 {
  min-width: 120px;
}

.mw-130 {
  min-width: 130px;
}

.mw-140 {
  min-width: 140px;
}

.mw-150 {
  min-width: 150px;
}

.mw-160 {
  min-width: 160px;
}

.mw-170 {
  min-width: 170px;
}

.mw-180 {
  min-width: 180px;
}

.mw-190 {
  min-width: 190px;
}

.mw-200 {
  min-width: 200px;
}

.mw-210 {
  min-width: 210px;
}

.mw-250 {
  min-width: 250px;
}

.mw-300 {
  min-width: 300px;
}

.mw-350 {
  min-width: 350px;
}

.mw-400 {
  min-width: 400px;
}

.mw-450 {
  min-width: 450px;
}

.mw-60i {
  min-width: 60px !important;
}

.mw-70i {
  min-width: 70px !important;
}

.mw-80i {
  min-width: 80px !important;
}

.mw-90i {
  min-width: 90px !important;
}

.mw-100i {
  min-width: 100px !important;
}

.mw-110i {
  min-width: 110px !important;
}

.mw-120i {
  min-width: 120px !important;
}

.mw-130i {
  min-width: 130px !important;
}

.mw-140i {
  min-width: 140px !important;
}

.mw-150i {
  min-width: 150px !important;
}

.mw-160i {
  min-width: 160px !important;
}

.mw-170i {
  min-width: 170px !important;
}

.mw-180i {
  min-width: 180px !important;
}

.mw-190i {
  min-width: 190px !important;
}

.mw-200i {
  min-width: 200px !important;
}

.mw-210i {
  min-width: 210px !important;
}

.wt-m40 {
  max-width: 40px;
}

.wt-m50 {
  max-width: 50px;
}

.wt-m60 {
  max-width: 60px;
}

.wt-m70 {
  max-width: 70px;
}

.wt-m80 {
  max-width: 80px;
}

.wt-m90 {
  max-width: 90px;
}

.wt-m100 {
  max-width: 100px;
}

.wt-m110 {
  max-width: 110px;
}

.wt-m120 {
  max-width: 120px;
}

.wt-m130 {
  max-width: 130px;
}

.wt-m140 {
  max-width: 140px;
}

.wt-m150 {
  max-width: 150px;
}

.wt-m160 {
  max-width: 160px;
}

.wt-m170 {
  max-width: 170px;
}

.wt-m180 {
  max-width: 180px;
}

.wt-m190 {
  max-width: 190px;
}

.wt-m200 {
  max-width: 200px;
}

.wt-m210 {
  max-width: 210px;
}

.wt-m220 {
  max-width: 220px;
}

.wt-m230 {
  max-width: 230px;
}

.wt-m240 {
  max-width: 240px;
}

.wt-m250 {
  max-width: 250px;
}

.wt-m300 {
  max-width: 300px;
}

.wt-m400 {
  max-width: 400px;
}

.wt-m450 {
  max-width: 450px;
}

.wt-m500 {
  max-width: 500px;
}

.wt-m600 {
  max-width: 600px;
}

.wt-m700 {
  max-width: 700px;
}

.wt-m800 {
  max-width: 800px;
}

.wt-m900 {
  max-width: 900px;
}

.w-46 {
  width: 46px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-100 {
  margin-left: 100px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-100 {
  margin-right: 100px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

.es-border-top {
  border-top: 1px solid #DEE2E6;
  padding-top: 10px;
}

/********************/
button:focus {
  box-shadow: none !important;
}

.ri-emotion-fill {
  color: #00b446;
  font-size: 16px;
}
.ri-emotion-fill:hover {
  color: #00b446 !important;
}

.ri-emotion-normal-fill {
  color: #ffe121;
  font-size: 16px;
}
.ri-emotion-normal-fill:hover {
  color: #ffe121 !important;
}

.ri-emotion-unhappy-fill {
  color: #ff3334;
  font-size: 16px;
}
.ri-emotion-unhappy-fill:hover {
  color: #ff3334 !important;
}

.es-ri-prohibited-line {
  color: #a94442;
}
.es-ri-prohibited-line:hover {
  color: #a94442 !important;
}

.es-ri-checkbox-circle-line {
  color: #40cc23;
}
.es-ri-checkbox-circle-line:hover {
  color: #40cc23 !important;
}

.ri-circle-fill {
  color: #a1a1a1;
  font-size: 16px;
}
.ri-circle-fill:hover {
  color: #a1a1a1 !important;
}

.btn-outline-primary {
  --bs-btn-color: $color_1;
  --bs-btn-border-color: $color_7;
  --bs-btn-hover-color: $background-color_1;
  --bs-btn-hover-bg: $color_7;
  --bs-btn-hover-border-color: $color_7;
  --bs-btn-focus-shadow-rgb: 59, 125, 221;
  --bs-btn-active-color: $background-color_1;
  --bs-btn-active-bg: $color_7;
  --bs-btn-active-border-color: $color_7;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: $color_7;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: $color_7;
  --bs-gradient: none;
}

.success {
  background: #fff;
  border: 2px solid #d6e9c6;
  color: #3c763d;
  padding: 1px 10px 2px 10px !important;
  font-size: 11px;
  font-weight: 600;
}

.danger {
  background: #fff;
  border: 2px solid #ebccd1;
  color: #a94442;
  padding: 1px 10px 2px 10px !important;
  font-size: 11px;
  font-weight: 600;
}

.warning {
  background-color: #fff;
  border: 2px solid #faebcc;
  color: #8a6d3b;
  padding: 1px 10px 2px 10px !important;
  font-size: 11px;
  font-weight: 600;
}

body {
  background-color: transparent;
  overflow-y: auto;
  font-size: 13px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}
body.open-sidebar .main {
  margin-left: 0 !important;
}
@media only screen and (max-width: 991px) {
  body.open-sidebar .main {
    margin-left: 265px !important;
  }
}
body .main {
  overflow: visible;
}
@media only screen and (max-width: 991px) {
  body .main {
    margin-left: 0 !important;
  }
  body .main main.content > .row {
    margin-right: 0 !important;
  }
}

.breadcrumb-item.active {
  color: #F7813D;
}

.es-title-wiki {
  font-size: 14px;
}
.es-title-wiki:hover i {
  color: #F7813D;
}

.es-login-page {
  background-color: #F8F9FA;
}
@media screen and (max-width: 991px) {
  .es-login-page .row {
    height: auto !important;
    padding: 20px;
  }
  .es-login-page .row > div:first-child {
    order: 2;
  }
  .es-login-page .row > div:nth-child(2) {
    order: 1;
  }
  .es-login-page .row > div:nth-child(3) {
    order: 3;
  }
}
@media screen and (max-width: 1024px) {
  .es-login-page .row > div:nth-child(3) {
    align-self: center !important;
  }
  .es-login-page .row .es-login-vector {
    top: 0 !important;
  }
}
.es-login-page .card {
  border-radius: 2px;
  background: #FFF;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.06);
}
@media screen and (max-width: 991px) {
  .es-login-page .card {
    max-width: 480px;
    margin: auto;
  }
  .es-login-page .card .card-body {
    padding: 0;
  }
}
@media screen and (max-width: 991px) {
  .es-login-page .brand-info-content {
    margin-top: 20px;
    flex-wrap: wrap;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}
.es-login-page .brand-info-content p.vertical-text {
  writing-mode: vertical-rl;
  transform: rotateZ(180deg);
  color: #E5E7E7;
  height: max-content;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin: 0px 10px 0px 0px;
  position: relative;
}
@media screen and (max-width: 991px) {
  .es-login-page .brand-info-content p.vertical-text {
    font-size: 24px;
    writing-mode: horizontal-tb;
    transform: rotateZ(0);
  }
}
.es-login-page .brand-info-content .vision-values {
  padding-left: 0;
}
@media screen and (max-width: 991px) {
  .es-login-page .brand-info-content .vision-values {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.es-login-page .brand-info-content .vision-values li {
  margin-bottom: 35px;
  display: block;
  color: #495057;
}
@media screen and (max-width: 991px) {
  .es-login-page .brand-info-content .vision-values li {
    margin-bottom: 10px;
  }
}
.es-login-page .brand-info-content .vision-values li:last-child {
  margin-bottom: 0;
}
.es-login-page .brand-info-content .vision-values li p {
  line-height: 20px;
}
@media screen and (max-width: 1300px) {
  .es-login-page .brand-info-content .vision-values li p br {
    display: none;
  }
}
.es-login-page .brand-info-content .vision-values li p .es-bullets {
  height: 20px;
  width: 20px;
}
.es-login-page .brand-info-content .vision-values .es-our-values-bullets p {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 30px;
}
.es-login-page .brand-info-content .vision-values h2, .es-login-page .brand-info-content .vision-values .h2 {
  margin-bottom: 3px;
  font-weight: 500;
  color: #343A40 !important;
  font-size: 20px;
}
@media screen and (max-width: 991px) {
  .es-login-page .brand-info-content .vision-values h2, .es-login-page .brand-info-content .vision-values .h2 {
    font-size: 14px;
  }
}
.es-login-page .brand-info-content .vision-values p {
  margin-bottom: 0;
  font-weight: 400;
}
@media screen and (max-width: 991px) {
  .es-login-page .brand-info-content .vision-values p {
    font-size: 13px;
    line-height: normal;
  }
}
.es-login-page .es-login-vector {
  position: relative;
  top: -60px;
}
@media screen and (max-width: 991px) {
  .es-login-page .es-login-vector {
    top: 0;
    margin-top: 20px;
  }
}
.es-login-page .es-login-vector img {
  width: 100%;
  max-width: 370px;
}

.form-check-input:checked {
  background-color: #04c89d;
  border-color: #04c89d;
}

.form-check-input[disabled] ~ .form-check-label,
.form-check-input:disabled ~ .form-check-label {
  cursor: default !important;
  opacity: 0.5;
}

#flexCheckChecked .form-check-input[type=checkbox] {
  background-color: #3b7ddd;
  border-color: #3b7ddd;
}

.breadcrumb-item.active {
  color: #F7813D;
}

h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: #343A40;
}

h1,
.h1 {
  font-size: 1.75rem;
}

h2,
.h2 {
  font-size: 24px;
  font-weight: 400;
}

h3,
.h3 {
  font-size: 1.5rem;
}

h4,
.h4 {
  font-size: 1rem;
}

h5,
.h5 {
  font-size: 0.875rem;
}

h6,
.h6 {
  font-size: 0.875rem;
}

hr {
  border-color: #bbb;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 0.8125rem;
}

.mx-10 {
  margin-left: 1.5rem;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 3rem;
}

.mt-6 {
  margin-top: 4.5rem;
}

.mt-7 {
  margin-top: 6rem;
}

.ms-64 {
  margin-left: 64px;
}

.mt-43 {
  margin-top: 1.688rem;
}

.mt-48 {
  margin-top: 3rem;
}

.mt-35 {
  margin-top: 3.188rem;
}

.mt-37 {
  margin-top: 1.313rem;
}

.mt-34 {
  margin-top: 2.125rem;
}

.mt-auto {
  margin-top: auto;
}

.ml-10 {
  margin-left: 0.625rem;
}

.ml-31 {
  margin-left: 1.9375rem;
}

.ml-36 {
  margin-left: 36px;
}

.es-clear {
  clear: both;
}

.es-h-248 {
  height: 248px;
}

.es-modal-sm {
  max-width: 300px;
}

.es-w-30 {
  width: 30%;
  float: right;
}

.es-w-69 {
  width: 69%;
  float: left;
}

textarea {
  resize: none;
}

.main.es-no-left-section {
  margin-left: 0px !important;
}

.addnew_policy {
  position: absolute;
}

.es-flex-center-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.es-flex-between-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.es-flex-between-start {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
}

.es-flex-between-start {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.es-flex-end-center {
  display: flex;
  justify-content: end;
  align-items: center;
}

.es-flex-end {
  display: flex;
  justify-content: end;
}

.es-flex-start {
  display: flex;
  justify-content: start;
}

.es-flex-start-center {
  display: flex;
  justify-content: start;
  align-items: center;
}

.es-flex-start-center {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.es-status-check-btn .form-check.form-switch {
  justify-content: end;
}

.es-error-handling {
  min-height: calc(100vh - 309px);
}
.es-error-handling .es-btn-link,
.es-error-handling .es-btn-link:hover {
  color: #0a58ca;
}
.es-error-handling p {
  margin-bottom: 10px;
  padding-bottom: 0px;
}

.select2-container span.select2-dropdown {
  z-index: 1;
}

i.ri-file-copy-line:hover {
  color: #F7813D;
}

.es-success {
  color: #3c763d;
  font-weight: 600;
}

.es-inactive {
  color: #a82700;
  font-weight: 600;
}

.es-checkboxes {
  display: flex;
  flex-wrap: wrap;
}

.progress-bar {
  background-color: #F7813D !important;
}

.me-0 {
  margin-right: 0 !important;
}

.ps-64 {
  padding-left: 64px;
}

.es-col-minimum-width {
  width: 7% !important;
}

a {
  text-decoration: none;
  cursor: pointer;
  font-weight: 400;
  color: #0a58ca;
}

.text-capitalize {
  text-transform: none !important;
}

.ri-checkbox-circle-line {
  color: #40cc23;
  font-size: 16px;
}

.form-check .form-evt-error {
  display: block;
}
.form-check label {
  margin-top: 1px;
  width: 100%;
  word-break: break-all;
}

h4.es-text-head, .es-text-head.h4 {
  font-weight: normal;
}

.form-check-input[type=checkbox] {
  width: 16px;
  height: 16px;
  border-radius: 0;
}
.form-check-input[type=radio] {
  width: 1.2em;
  height: 1.2em;
}
.form-check-input:checked {
  background-color: #757575;
  border-color: #757575;
}

.form-switch {
  display: flex;
  align-items: center;
}
.form-switch .form-check-input {
  width: 34px;
  height: 18px;
  margin-right: 5px;
  border-radius: 16px !important;
  -webkit-border-radius: 2px;
  margin-top: 0;
  margin-bottom: 0;
}
.form-switch .form-check-input:checked {
  background-color: #04c89d;
  border-color: #04c89d;
}
.form-switch .form-check-label {
  width: auto;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #343A40;
}

a:hover {
  text-decoration: none;
}

.table a:hover {
  text-decoration: underline;
}

.es-grey-background {
  background-color: #e9ebec;
}

.common_form_group hr.divider {
  border-color: #cccccc;
  margin: 30px 0 7px 0;
}
.common_form_group .input-group .form-control {
  border-color: #cccccc;
  border-radius: 2px !important;
  height: 29px;
  text-align: left;
  color: #495057;
  width: 100%;
}
@media only screen and (max-width: 1300px) {
  .common_form_group .input-group .form-control {
    font-size: 14px;
  }
}
.common_form_group .input-group label {
  color: #495057;
}
@media only screen and (max-width: 1300px) {
  .common_form_group .input-group label {
    font-size: 14px;
  }
}
.common_form_group .input-group .form-control.error {
  border-color: #3b7ddd;
}
.common_form_group label {
  width: 100%;
}
.common_form_group .form-check input[type=checkbox] {
  width: 20px;
  height: 20px;
}
.common_form_group .save_next {
  border: none;
  color: #fff;
  font-size: 16px;
  background-color: #3b7ddd;
  min-width: 145px;
  min-height: 40px;
  border-radius: 2px;
}

span.favourite i {
  cursor: pointer;
}

.expires {
  flex-wrap: unset;
  border: 1px solid #e9ebec;
  height: 40px;
  border-radius: 2px !important;
  overflow: hidden;
  max-width: 170px;
  display: flex;
}
.expires input {
  width: 100%;
  border: none;
  height: 100%;
  text-align: center;
  padding: 0.3rem 0.3rem;
}
.expires span {
  position: relative;
}
.expires span:nth-child(2):before {
  height: 65%;
  content: "";
  width: 1px;
  background: #e9ebec;
  position: absolute;
  left: 0;
  transform: rotate(10deg) translateY(-50%);
  top: 50%;
  z-index: 1;
}
.expires span:nth-child(2):after {
  height: 65%;
  content: "";
  width: 1px;
  background: #e9ebec;
  position: absolute;
  right: 0;
  transform: rotate(10deg) translateY(-50%);
  top: 50%;
  z-index: 1;
}

.select-plus {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.select-plus i {
  font-size: 20px;
}

.ap-check {
  display: flex;
  gap: 20px;
}
.ap-check .input-group {
  width: auto;
}

.coded-block {
  height: 100%;
  border-left: 1px solid #e9ebec;
  padding: 20px;
}
.coded-block p {
  margin: 0;
}

.user-activity {
  border-bottom: 1px solid #e9ebec;
  padding: 10px 0;
}
.user-activity:last-child {
  border: none;
}

.session-list ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.session-list li {
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e9ebec;
  padding: 0 0 5px 0;
  cursor: pointer;
  display: flex;
}

@media (max-width: 767px) {
  .coded-block {
    border-top: 1px solid #e9ebec;
    border-left: 0;
    margin: 20px 0;
    padding: 20px 0;
  }
}
.logo {
  position: absolute;
  left: 80px;
  transform: translateX(-50%);
}
.logo img {
  width: 107px;
}

.main {
  background-color: #fff;
}
.main > .navbar {
  position: sticky;
  top: 0;
  z-index: 99;
}
.main escalon-load {
  position: sticky;
  top: 0;
  z-index: 99;
}

.es-common-bg {
  background-color: #fff;
  padding: 15px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 3px 3px rgba(56, 65, 74, 0.1);
}

.first_sample .input-group .form-control {
  border-radius: 2px !important;
}

.second_sample .input-group .form-control {
  border-radius: 2px !important;
}
.second_sample .input-group input::placeholder {
  color: #343A40;
}

.third_sample .input-group .form-control {
  border-width: 0 0 1px 0;
  border-radius: 0;
  padding: 0;
}

.fourth_sample .input-group .form-control {
  border-radius: 0;
}

.focus_input_label .input-group {
  height: 45px;
  position: relative;
  width: 100%;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid #e9ebec;
}
.focus_input_label .form-control {
  border-radius: 2px;
  border: 0;
  box-sizing: border-box;
  font-size: 14px;
  height: 100%;
  outline: 0;
  width: 100%;
}
.focus_input_label .form-control:focus {
  padding-top: 15px !important;
}
.focus_input_label .form-control:focus ~ .placeholder {
  transform: translateY(-5px) translateX(0) scale(1);
  color: #dc3545;
}
.focus_input_label .form-control:not(:placeholder-shown) {
  padding-top: 15px !important;
}
.focus_input_label .form-control:not(:placeholder-shown) ~ .placeholder {
  transform: translateY(-5px) translateX(0) scale(1);
  color: #dc3545;
}

.placeholder {
  color: #020202;
  left: 15px;
  line-height: 14px;
  pointer-events: none;
  position: absolute;
  transform-origin: 0 50%;
  transition: transform 200ms, color 200ms;
  top: 12px;
  font-size: 14px;
  background-color: #e2e2e2;
  z-index: 99;
}

.input-group .form-control {
  font-size: 13px !important;
}

.modal-footer .btn {
  margin: 0.22rem 0.12rem !important;
}

/* Buttons */
.es-action-buttons {
  margin-right: 3%;
  margin-bottom: 2%;
}
.es-action-buttons [class*=es-btn] {
  margin: 0.22rem 0.12rem;
}

[class*=es-btn] {
  transition: all 0.1s ease-in-out;
  padding: 0px 12px !important;
  border-radius: 2px;
  height: 30px !important;
  font-size: 13px !important;
  line-height: 29px;
  z-index: 1;
  min-width: 63px;
}
[class*=es-btn]:focus, [class*=es-btn]:active:focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0 rgba(64, 81, 137, 0.25);
  box-shadow: 0 0 0 0 rgba(64, 81, 137, 0.25);
}

.es-btn-primary.evt-apply-template-changes.evt-publish-btn.es-apply-changes {
  height: 24px !important;
  line-height: 21px !important;
}

.es-btn-primary {
  background-color: #F7813D;
  color: #fff;
  border-color: #F7813D;
}
.es-btn-primary:hover {
  background-color: #de7513;
  color: #fff;
  border-color: #de7513;
}
.es-btn-primary:focus, .es-btn-primary:active {
  border-color: #de7513 !important;
  background-color: #de7513 !important;
  color: #fff !important;
}

.es-btn-outline {
  background-color: #fff;
  color: #343A40;
  border-color: #e2e2e2;
}
.es-btn-outline:hover {
  background-color: #e2e2e2;
  color: #343A40;
}
.es-btn-outline:focus, .es-btn-outline:active {
  border-color: #e2e2e2 !important;
  background-color: #fff !important;
  color: #343A40 !important;
}

.es-btn-cancel {
  border: 1px solid #bbbbbb;
  background-color: #fff;
  color: #676767;
}
.es-btn-cancel:hover {
  border-color: #bbbbbb;
  background: #bbbbbb;
}

.es-btn-danger {
  border: 1px solid #dc3545;
  background: #fff;
  color: #dc3545;
}
.es-btn-danger:hover {
  border-color: #dc3545;
  background: #dc3545;
  color: #fff;
}
.es-btn-danger:focus, .es-btn-danger:active {
  border-color: #dc3545 !important;
  background: #dc3545 !important;
  color: #fff !important;
}

.es-btn-apply {
  border: 1px solid #495057;
  background-color: #495057;
  color: #fff;
}
.es-btn-apply:hover {
  border-color: #495057;
  background: #495057;
  color: #fff;
}
.es-btn-apply:focus, .es-btn-apply:active {
  border-color: #495057 !important;
  background: #495057 !important;
  color: #fff !important;
}

.es-btn-link {
  border: 0;
  background-color: transparent;
  color: #F7813D;
  font-weight: 500;
  padding-left: 0 !important;
}
.es-btn-link i {
  color: #F7813D;
}
.es-btn-link:hover {
  border: 0;
  color: #de7513;
  background: transparent;
  text-decoration: underline;
}
.es-btn-link:hover i {
  color: #de7513;
}
.es-btn-link:focus, .es-btn-link:active {
  border-color: 0 !important;
  background-color: transparent !important;
  outline: none;
}

.es-h2-header {
  position: sticky;
  top: 0;
  z-index: 99;
}

.escalon-load {
  position: sticky;
  top: 0;
  z-index: 99;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #fff;
  transition: 0.5s;
  z-index: 1002;
}
.sidebar .sidebar-brand {
  color: #868d96;
  border-bottom: 1px dashed #666767;
  background: rgba(0, 0, 0, 0.15);
}
.sidebar .sidebar-cta-content {
  background-color: #313334 !important;
  color: #868d96;
  position: relative;
}
.sidebar .sidebar-cta-content .close-me {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 1.5rem;
  opacity: 0.5;
}
.sidebar .sidebar-nav .sidebar-header {
  text-transform: uppercase;
  font-size: 0.75rem;
  color: #495057;
  letter-spacing: 1px;
  padding: 20px 20px 5px !important;
}
.sidebar .sidebar-nav .sidebar-header:first-child {
  padding: 0 20px 5px !important;
}
.sidebar .sidebar-nav .sidebar-item .sidebar-link {
  margin: 0 10px;
  border-radius: 2px;
  border-left-color: transparent !important;
  padding: 0.5rem 1rem;
  transition: all 0.1s ease-in-out;
  display: flex;
  align-items: center;
  background: none !important;
  border: none;
  letter-spacing: 0.02rem;
  color: rgba(233, 236, 239, 0.5);
}
.sidebar .sidebar-nav .sidebar-item .sidebar-link i {
  transform: rotate(90deg);
}
.sidebar .sidebar-nav .sidebar-item .sidebar-link.collapsed i, .sidebar .sidebar-nav .sidebar-item .sidebar-link.active i {
  transform: rotate(0);
}
.sidebar .sidebar-nav .sidebar-item .sidebar-link i {
  position: absolute;
  right: 0;
  transition: all 0.3s ease-out;
}
.sidebar .sidebar-nav .sidebar-item .sidebar-link:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: rgba(233, 236, 239, 0.75);
  border-radius: 2px;
  border-left-color: transparent !important;
}
.sidebar .sidebar-nav .sidebar-item .sidebar-link[aria-expanded=true] {
  color: rgba(233, 236, 239, 0.75);
}
.sidebar .sidebar-nav .sidebar-item .sidebar-link[aria-expanded=true] i,
.sidebar .sidebar-nav .sidebar-item .sidebar-link[aria-expanded=true] svg {
  color: rgba(233, 236, 239, 0.75);
}
.sidebar .sidebar-nav .sidebar-item.active .collapsed i {
  transform: rotate(90deg);
}
.sidebar .sidebar-nav .sidebar-item .sidebar-collapse {
  color: #888888;
  border-radius: 2px;
  margin: 0px 10px;
  padding: 0 15px;
}
.sidebar .sidebar-nav .sidebar-item .sidebar-collapse ul li {
  border-radius: 2px;
  display: inline-block;
  width: 100%;
  line-height: 18px;
}
.sidebar .sidebar-nav .sidebar-item .sidebar-collapse ul li a {
  padding: 0.25rem 0 0.25rem 0;
  padding-left: 1.8rem;
  width: 100%;
  display: inline-block;
  position: relative;
  transition: all 0.1s ease-in-out;
  color: rgba(233, 236, 239, 0.5);
}
.sidebar .sidebar-nav .sidebar-item .sidebar-collapse ul li a:hover {
  color: #F7813D !important;
}
.sidebar .sidebar-nav .sidebar-item .sidebar-collapse ul li a i {
  position: absolute;
  right: 0;
  transition: all 0.3s ease-out;
}
.sidebar .sidebar-nav .sidebar-item .sidebar-collapse ul li a.active-submenu {
  color: #F7813D !important;
}
.sidebar .sidebar-nav .sidebar-item .sidebar-collapse ul li a[aria-expanded=true] i {
  transform: rotate(90deg);
}
.sidebar .sidebar-nav .sidebar-item .sidebar-collapse ul li .sub-child {
  padding-left: 25px;
}
.sidebar .sidebar-nav .sidebar-item svg {
  margin-right: 10px;
}
.sidebar .sidebar-content {
  background: #343A40;
}

.sidebar-collapse > ul li a:before {
  content: "";
  width: 6px;
  height: 1.5px;
  position: absolute;
  left: 10px;
  top: 15px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background-color: rgba(233, 236, 239, 0.5);
}
.sidebar-collapse > ul ul li a:before {
  height: 5px;
  width: 5px;
  left: 10px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid;
  top: 12px;
}

.active .sidebar-collapse span i {
  transform: rotate(90deg);
}

.active .sidebar-collapse .collapsed span i {
  transform: rotate(0) !important;
}

.datepicker-dropdown .datepicker-days {
  font-size: 11px;
  padding: 5px;
  z-index: 9999 !important;
}
.datepicker-dropdown .datepicker-days td.today {
  background: #F7813D !important;
  color: #fff !important;
}

.standard-add-btn .cu-filter-block {
  margin: 10px 0px 3px 0 !important;
  top: 0 !important;
}

@media (min-width: 992px) {
  .content {
    padding: 0.2rem 1.5rem 1.5rem;
  }
}
.es-page-content .container-fluid .cu-filter-block, .es-page-content .container-sm .cu-filter-block, .es-page-content .container-md .cu-filter-block, .es-page-content .container-lg .cu-filter-block, .es-page-content .container-xl .cu-filter-block {
  margin-right: 0 !important;
}
.es-page-content .container-fluid .cu-filter-block a, .es-page-content .container-sm .cu-filter-block a, .es-page-content .container-md .cu-filter-block a, .es-page-content .container-lg .cu-filter-block a, .es-page-content .container-xl .cu-filter-block a {
  border: 1px solid #ccc;
  width: 32px;
  height: 32px;
  display: inline-block;
  padding: 5px;
  line-height: 22px;
  text-align: center;
}
.es-page-content .container-fluid .cu-filter-block a i, .es-page-content .container-sm .cu-filter-block a i, .es-page-content .container-md .cu-filter-block a i, .es-page-content .container-lg .cu-filter-block a i, .es-page-content .container-xl .cu-filter-block a i {
  font-size: 16px;
}
.es-page-content .container-fluid .cu-filter-block a:hover, .es-page-content .container-sm .cu-filter-block a:hover, .es-page-content .container-md .cu-filter-block a:hover, .es-page-content .container-lg .cu-filter-block a:hover, .es-page-content .container-xl .cu-filter-block a:hover {
  border-color: #F7813D;
}
.es-page-content .container-fluid .cu-filter-block a:hover i, .es-page-content .container-sm .cu-filter-block a:hover i, .es-page-content .container-md .cu-filter-block a:hover i, .es-page-content .container-lg .cu-filter-block a:hover i, .es-page-content .container-xl .cu-filter-block a:hover i {
  color: #F7813D;
}

.content header .me-3:last-child {
  margin-right: 0px !important;
}
.content header .cu-filter-block.es-add {
  border: 1px solid #ccc;
  width: 30px;
  height: 30px;
  display: inline-block;
  padding: 5px;
  line-height: 19px;
  text-align: center;
  border-radius: 2px;
  margin-bottom: 0px;
}
.content header .cu-filter-block {
  margin: 33px 0px 3px 0;
  cursor: pointer;
  height: 27px;
  position: relative;
  top: 38px;
}
.content header .cu-filter-block a {
  border: 1px solid #ccc;
  width: 32px;
  height: 32px;
  display: inline-block;
  padding: 5px;
  line-height: 22px;
  text-align: center;
}
.content header .cu-filter-block a:hover {
  border-color: #F7813D;
}
.content header .cu-filter-block a:hover i {
  color: #F7813D;
}
.content header .cu-filter-block i {
  font-size: 16px;
}
.content header .cu-filter-block .ticket-link {
  color: #0a58ca !important;
}
@media only screen and (max-width: 767px) {
  .content header .cu-filter-block {
    margin-right: 0 !important;
  }
  .content header .cu-filter-block a {
    font-size: 11px;
  }
  .content header .cu-filter-block a i {
    margin-right: 2px !important;
  }
}
.content header .cu-filter-block a {
  color: #343A40 !important;
}
.content nav .breadcrumb {
  font-size: 13px;
  margin-bottom: 0;
}
.content nav .breadcrumb li span.favourite i.ri-star-fill {
  color: #F7813D !important;
}
.content nav .breadcrumb li.breadcrumb-item {
  color: #495057 !important;
}
.content nav .breadcrumb li.breadcrumb-item:first-letter {
  text-transform: capitalize;
}
.content nav .breadcrumb li.breadcrumb-item.active {
  color: #F7813D !important;
}

.page-info {
  margin: 0.5rem 0.5rem 1.5rem 0.1rem;
}
.page-info .breadcrumb {
  margin-bottom: 0px;
}
.page-info .breadcrumb li i:hover {
  color: #F7813D;
}

.es-delete-msg {
  word-wrap: break-word;
}

.es-search-div {
  max-width: calc(100% - 30px);
}

.documents-tab-content.evt-directory-container.evt-search-dir .es-efs-file-list-item .component-name.file-name.es-with-subtext-cell {
  position: relative !important;
}

div#evt-trash-external-container .component-name.file-name div {
  max-width: calc(100% - 30px);
}

.efs-storge ul.es-files-tree .documents-tab-content li .es-search-div .es-efs-file-path-subtxt {
  left: 50px;
  top: 30px;
  max-width: calc(100% - 80px);
}

.ri-file-copy-line:hover {
  color: #F7813D !important;
}

.es-efs-perm-actions .es-efs-perm-add,
.es-efs-perm-actions .es-efs-perm-remove {
  height: 24px !important;
  width: 24px !important;
  padding: 0px !important;
  line-height: 23px !important;
}

.custom_accordion .accordion .accordion-item {
  border: 1px solid #cccccc;
  margin: 15px 0;
  box-shadow: none;
}
.custom_accordion .accordion .accordion-item button.accordion-button {
  font-size: 13px;
  font-weight: 400;
  color: #495057;
  box-shadow: none;
  padding: 8px !important;
}
.custom_accordion .accordion .accordion-item button.accordion-button::after {
  height: 15px;
  width: 15px;
  background-size: 100%;
  opacity: 0.8;
}
.custom_accordion .accordion .accordion-item button.accordion-button:focus {
  box-shadow: none;
}
.custom_accordion .accordion .accordion-item h2, .custom_accordion .accordion .accordion-item .h2 {
  border: none;
}
.custom_accordion .accordion .accordion-item button.accordion-button[aria-expanded=true] {
  background-color: #fff;
}
.custom_accordion .accordion .accordion-item .accordion-body {
  border-top: 1px solid #e9ebec;
  font-size: 14px;
}
.custom_accordion .accordion .accordion-item .accordion-body ul {
  margin-bottom: 0;
}

.es-efs-file-list-item .es-uploading-progress {
  display: contents;
}

.custom_alert .alert {
  border-radius: 0;
  padding: 6px 13px;
  font-size: 14px;
}

.custom_button .btn {
  border-radius: 0;
  text-transform: capitalize;
  border-radius: 2px;
}
.custom_button .btn:focus {
  box-shadow: none;
}
.custom_button button.btn-close:focus {
  box-shadow: none !important;
}
.custom_button .close_btn_bg {
  height: 30px;
  width: 30px;
  border-radius: 50px;
  background-color: #3b7ddd;
  padding: 17px;
  box-sizing: border-box;
  background-size: 9px;
  background-position: center;
  vertical-align: middle;
}

.card.custom_cards {
  color: #343A40;
  border-color: #cccccc;
  padding: 10px;
  border-radius: 0;
  margin-bottom: 0px;
}
.card.custom_cards .card-body {
  padding: 0px;
}
.card.custom_cards .card-body .es-action-cards {
  margin-top: 10px;
}
.card.custom_cards .card-body .es-action-cards {
  padding: 10px 9px;
}
.card.custom_cards .card-body .input-group .input-group-text {
  border-top-left-radius: 4px !important;
  border-bottom-left-radius: 4px !important;
  background: #fff;
  color: #868e96;
  min-width: 30px;
  padding-left: 5px;
  padding-right: 5px;
  justify-content: center;
}
.card.custom_cards h5.card-title, .card.custom_cards .card-title.h5 {
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #495057;
}
.card.custom_cards h6.card-subtitle, .card.custom_cards .card-subtitle.h6 {
  font-size: 14px;
  color: #495057;
}
.card.custom_cards p {
  margin-bottom: 10px;
}
.card.custom_cards a {
  text-decoration: none;
  border-bottom: 1px solid;
}
.card.custom_cards ul {
  padding-left: 18px;
  margin-bottom: 10px;
}

.name-group {
  width: 34%;
}

.dropdown .dropdown-menu.drop_button {
  margin-top: 29px !important;
}

.navbar-nav .dropdown-menu {
  border: 1px solid #eeebeb !important;
  padding: 0;
}
.navbar-nav .dropdown-menu .dropdown-divider {
  margin: 0;
}
.navbar-nav .dropdown-menu .dropdown-item {
  padding: 7px;
}

.card_section .row div:first-child .card.custom_cards {
  background-color: #feeaea;
}
.card_section .row div:nth-child(2) .card.custom_cards {
  background-color: #eaf0fe;
}
.card_section .row div:last-child .card.custom_cards {
  background-color: #eaeaea;
}

.custom_dropdown .dropdown .dropdown-toggle {
  border-radius: 0;
}
.custom_dropdown .dropdown .dropdown-toggle:focus {
  box-shadow: none;
}

.custom_pagination ul.pagination li.page-item:not(.active) a {
  border: none;
  background-color: #e2e2e2;
  color: #020202;
}
.custom_pagination ul.pagination li.page-item a {
  height: 30px;
  width: 30px;
  line-height: 29px;
  padding: 0;
  text-align: center;
  border-radius: 2px;
}
.custom_pagination ul.pagination li.page-item a:focus {
  box-shadow: none;
}

.modal.right .modal-dialog {
  position: fixed;
  margin: auto;
  width: 320px;
  height: 100%;
  -webkit-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}
.modal.right .modal-content {
  height: 100%;
  overflow-y: auto;
}
.modal.right .modal-body {
  padding: 15px 15px 80px;
}

.modal.right.fade .modal-dialog {
  right: -320px;
  -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
  -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
  -o-transition: opacity 0.3s linear, right 0.3s ease-out;
  transition: opacity 0.3s linear, right 0.3s ease-out;
}

div#one-notify iframe {
  padding: 0 !important;
  box-shadow: 0px 1px 11px -7px #000;
  border-radius: 8px;
}

.modal.right.fade.show .modal-dialog {
  right: 0;
}

.es-notification-panel .badge.rounded-pill {
  background-color: #f7813d !important;
  color: #fff !important;
  font-size: 10px !important;
  height: 16px;
  min-width: 16px;
  display: inline-block;
}

.es-notification-panel .badge.rounded-pill.notification-count-hub {
  padding: 3px 6px !important;
}
.es-notification-panel .badge.rounded-pill.notification-count-hub.es-round-count-hub {
  padding: 3px !important;
}

.custom_tabs .tab-content .tab-pane {
  margin-top: 0;
}
.custom_tabs .tab-content .tab-pane ul {
  margin-bottom: 0;
}
.custom_tabs .tab-content .tab-pane p {
  margin-bottom: 0;
}
.custom_tabs nav .nav-tabs {
  border: none;
}
.custom_tabs nav .nav-tabs .nav-link.active {
  background-color: #0d6efd;
  color: #fff;
}
.custom_tabs nav .nav-tabs .nav-link {
  border-width: 1px;
  font-size: 13px;
  color: #343A40;
  background-color: #e9ebec;
  padding: 4px 15px;
  margin-right: 10px;
  text-transform: capitalize;
  border-radius: 50px;
  border: none;
  margin-bottom: 0;
}
.custom_tabs .tab-pane {
  margin-top: 20px;
  font-size: 14px;
  color: #343A40;
}
.custom_tabs .tab_bar .tab-content {
  border: 1px solid #eaf0fe;
  padding: 12px;
}
.custom_tabs .tab_bar .nav-tabs .nav-link {
  margin-right: 10px;
  border-radius: 2px 2px 0 0;
  position: relative;
}
.custom_tabs .tab_bar .nav-tabs .nav-link.active::before {
  background-color: #0d6efd;
}
.custom_tabs .round_tab nav .nav-tabs .nav-link:not(.active) {
  background-color: #e2e2e2;
  border: 1px solid #343A40;
}

.alphabetic_pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.alphabetic_pagination .pagination li.page-item {
  font-size: 14px;
  color: #343A40;
  margin-right: 0px !important;
}
.alphabetic_pagination p {
  margin-bottom: 0;
  font-size: 15px;
  color: #343A40;
}
.alphabetic_pagination ul.pagination {
  margin-bottom: 0;
}

.custom_pagination ul.pagination li.page-item input {
  height: 28px;
  width: 30px;
  font-size: 13px;
  padding: 0;
  text-align: center;
  margin-right: 10px;
  border-radius: 2px;
  border-color: #cccccc;
}
.custom_pagination ul.pagination li.page-item span {
  font-size: 18px;
  line-height: normal;
}

.round_tab nav {
  margin-bottom: 10px;
}

.input-group .input-group-text {
  border-top-left-radius: 4px !important;
  border-bottom-left-radius: 4px !important;
  background: #fff;
  color: #868e96;
  min-width: 30px;
  padding-left: 5px;
  padding-right: 5px;
  justify-content: center;
}
.input-group .input-group-text i {
  font-size: 13px;
}
.input-group .input-group-text i:hover {
  color: #868E96 !important;
}

.es-action-cards .info-card.client-contact-card,
.es-info-cards .info-card.client-contact-card {
  margin-left: 3px;
}
.es-action-cards .action-card,
.es-action-cards .info-card,
.es-info-cards .action-card,
.es-info-cards .info-card {
  background-color: #fff;
  border-radius: 2px;
  position: relative;
  box-shadow: 0 7px 7px rgba(56, 65, 74, 0.1);
  transition: all 0.15s ease;
  -webkit-transition: all 0.15s ease;
  overflow: hidden;
  margin-bottom: 31px;
  margin-right: 18px;
}
.es-action-cards .action-card:hover,
.es-action-cards .info-card:hover,
.es-info-cards .action-card:hover,
.es-info-cards .info-card:hover {
  border-color: rgba(0, 0, 0, 0.25);
}
.es-action-cards .action-card .info-card-content table tbody,
.es-action-cards .info-card .info-card-content table tbody,
.es-info-cards .action-card .info-card-content table tbody,
.es-info-cards .info-card .info-card-content table tbody {
  align-items: flex-start;
}
.es-action-cards .action-card .info-card-content table tbody tr td,
.es-action-cards .info-card .info-card-content table tbody tr td,
.es-info-cards .action-card .info-card-content table tbody tr td,
.es-info-cards .info-card .info-card-content table tbody tr td {
  white-space: normal;
}
.es-action-cards .action-card .info-card-content table tbody tr td .es-cem-email.es-finance-tag,
.es-action-cards .info-card .info-card-content table tbody tr td .es-cem-email.es-finance-tag,
.es-info-cards .action-card .info-card-content table tbody tr td .es-cem-email.es-finance-tag,
.es-info-cards .info-card .info-card-content table tbody tr td .es-cem-email.es-finance-tag {
  white-space: normal;
  overflow: visible;
}

.info-card-header,
.action-card-header {
  padding: 8px 15px;
  border-top: 2px solid #f7813d;
  border-bottom: 1px solid #e7e7e7;
}
.info-card-header h4.action-card-title, .info-card-header .action-card-title.h4,
.action-card-header h4.action-card-title,
.action-card-header .action-card-title.h4 {
  flex: 1;
}
.info-card-header .action-card-actions .icons .es-salesforce,
.action-card-header .action-card-actions .icons .es-salesforce {
  height: 14px;
  margin-right: 4px;
}
.info-card-header .action-card-actions .icons .es-salesforce a img,
.action-card-header .action-card-actions .icons .es-salesforce a img {
  width: 13px;
  margin-top: -4px;
}
.info-card-header .info-card-title,
.info-card-header .action-card-title,
.action-card-header .info-card-title,
.action-card-header .action-card-title {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.action-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top-color: #cccccc;
}

.action-card-content,
.info-card-content {
  padding: 0px 15px 10px 15px;
}
.action-card-content table tbody tr td.evt-content-copy > span,
.info-card-content table tbody tr td.evt-content-copy > span {
  display: inline-block;
  width: 100%;
}
.action-card-content table tbody tr td.evt-content-copy > span .es-cards-email.email-ellipses,
.info-card-content table tbody tr td.evt-content-copy > span .es-cards-email.email-ellipses {
  max-width: 220px;
}
.action-card-content .evt-render-sentiments td,
.info-card-content .evt-render-sentiments td {
  width: 10%;
  padding-right: 5px;
}
.action-card-content .evt-render-sentiments td:last-child,
.info-card-content .evt-render-sentiments td:last-child {
  width: 8%;
}
.action-card-content .evt-render-sentiments td .sentimental-icon,
.info-card-content .evt-render-sentiments td .sentimental-icon {
  position: relative;
  top: 3px;
}
.action-card-content .evt-render-sentiments td span.feedback-ellipses,
.info-card-content .evt-render-sentiments td span.feedback-ellipses {
  display: block;
  font-size: 13px;
  max-width: 419px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.action-card-content .evt-render-sentiments td span.sentimental-feedback,
.info-card-content .evt-render-sentiments td span.sentimental-feedback {
  display: inline-block;
  width: 100%;
}
.action-card-content .es-dashboard-task-list,
.info-card-content .es-dashboard-task-list {
  padding-top: 10px;
}
.action-card-content .es-dashboard-task-list > li,
.info-card-content .es-dashboard-task-list > li {
  width: 100%;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f9f9f9;
}
.action-card-content .es-dashboard-task-list > li h4, .action-card-content .es-dashboard-task-list > li .h4,
.info-card-content .es-dashboard-task-list > li h4,
.info-card-content .es-dashboard-task-list > li .h4 {
  font-size: 13px;
  margin-bottom: 2px;
}
.action-card-content .es-dashboard-task-list > li p,
.info-card-content .es-dashboard-task-list > li p {
  margin-bottom: 0px;
  font-size: 13px;
}
.action-card-content .es-dashboard-task-list > li table tbody tr td,
.info-card-content .es-dashboard-task-list > li table tbody tr td {
  padding-top: 0px;
  font-weight: 400 !important;
  font-size: 13px !important;
}
.action-card-content .es-dashboard-task-list > li table tbody tr td .client,
.action-card-content .es-dashboard-task-list > li table tbody tr td .taxonomy,
.info-card-content .es-dashboard-task-list > li table tbody tr td .client,
.info-card-content .es-dashboard-task-list > li table tbody tr td .taxonomy {
  font-size: 12px !important;
}
.action-card-content .es-dashboard-task-list > li ul,
.info-card-content .es-dashboard-task-list > li ul {
  list-style: disc;
  padding-left: 16px;
  padding-top: 5px;
}
.action-card-content .es-dashboard-task-list > li ul li,
.info-card-content .es-dashboard-task-list > li ul li {
  padding-left: 5px;
  width: 100%;
  color: #777;
}
.action-card-content table tbody .es-invoice-border:first-child,
.info-card-content table tbody .es-invoice-border:first-child {
  border: 0;
  margin-top: 0;
}
.action-card-content .es-address-text,
.info-card-content .es-address-text {
  color: #495057;
  font-weight: 400;
}
.action-card-content .es-card-table thead th,
.info-card-content .es-card-table thead th {
  background-color: #F8F9FA;
  color: #495057 !important;
  font-weight: 500;
  border-bottom-color: #DEE2E6 !important;
  white-space: nowrap;
  padding: 0.5rem 20px 0.5rem 0.5rem;
  background-color: #f8f9fa;
  border-width: 0 0 1px 0 !important;
}
.action-card-content .es-card-table tbody,
.info-card-content .es-card-table tbody {
  border-width: 0 1px;
  border-left: 0px;
  border-right: 0px;
}
.action-card-content .es-card-table tbody tr td,
.info-card-content .es-card-table tbody tr td {
  padding: 0.5rem 20px 0.5rem 0.5rem;
}
.action-card-content table tr td,
.info-card-content table tr td {
  padding: 10px 0 0 0;
  vertical-align: baseline;
}
.action-card-content table tr td .ri-file-copy-line,
.info-card-content table tr td .ri-file-copy-line {
  visibility: hidden;
}
.action-card-content table tr td:hover .ri-file-copy-line,
.info-card-content table tr td:hover .ri-file-copy-line {
  visibility: visible;
}
.action-card-content table tr td:first-child,
.info-card-content table tr td:first-child {
  font-weight: 500;
  color: #212529;
  padding-right: 15px;
  width: 1%;
  white-space: nowrap;
}
.action-card-content table tr td .es-contact-type-info,
.info-card-content table tr td .es-contact-type-info {
  min-width: 100%;
  padding-right: 0;
}
.action-card-content ul,
.info-card-content ul {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
.action-card-content ul li,
.info-card-content ul li {
  flex: 0 0 auto;
  width: auto;
  margin-bottom: 5px;
}
.action-card-content ul li label,
.info-card-content ul li label {
  color: rgba(0, 0, 0, 0.5);
  width: 100%;
}
.action-card-content ul li span small, .action-card-content ul li span .small,
.info-card-content ul li span small,
.info-card-content ul li span .small {
  font-size: 100%;
}
.action-card-content.client-contact-content table tr td > span,
.info-card-content.client-contact-content table tr td > span {
  white-space: normal;
}

.es-widget-wrap .action-card table td.evt-content-copy span.es-cards-email.email-ellipses {
  padding-right: 1px !important;
}
@media only screen and (min-width: 1201px) and (max-width: 1480px) {
  .es-widget-wrap .action-card table td.evt-content-copy span.es-cards-email.email-ellipses {
    max-width: 180px;
  }
}

.action-card-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.action-card-actions a {
  padding: 0 2px;
  cursor: pointer;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
}
.action-card-actions a:hover i {
  color: #f7813d;
}
.action-card-actions a:hover .ri-close-circle-fill {
  color: #dc3545;
}

.info-card.no-data .info-card-content,
.info-card.no-data .action-card-content,
.action-card.no-data .info-card-content,
.action-card.no-data .action-card-content {
  text-align: center;
  padding: 10px 0;
}
.info-card.no-data .info-card-content p,
.info-card.no-data .action-card-content p,
.action-card.no-data .info-card-content p,
.action-card.no-data .action-card-content p {
  font-style: italic;
  color: #999;
  margin: 10px 0;
}

.dataTables_filter label {
  font-size: 0;
  justify-content: end;
  float: right;
}
.dataTables_filter label input {
  border: 1px solid #ced4da;
  border-radius: 2px;
  width: 100%;
  margin: 0;
  background-image: url("/img/search-icon.png");
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: 10px 0.5rem;
  padding-left: 30px;
  font-size: 13px;
  color: #495057;
}
.dataTables_filter label input::placeholder {
  color: #495057;
}

.toggle-switch-col .form-switch {
  display: block;
}

.es-datatable {
  padding-bottom: 0;
}
.es-datatable table.es-custom-popup-field-list tbody tr td .right-action-list a:first-child {
  vertical-align: middle;
}
.es-datatable table.es-custom-popup-field-list tbody tr td .right-action-list a i.ri-close-circle-fill {
  font-size: 1.09rem;
}
.es-datatable table.es-custom-popup-field-list tbody tr td .right-action-list a img {
  width: 0.9rem;
  height: 0.9rem;
}
@media only screen and (max-width: 767px) {
  .es-datatable .wrapper .top-header,
  .es-datatable .wrapper .es-app-menu,
  .es-datatable .wrapper footer {
    position: relative;
    top: 0;
  }
  .es-datatable .dataTables_wrapper .row .col-sm-12.col-md-9 {
    padding-right: 0 !important;
  }
  .es-datatable .table-filters {
    flex-wrap: wrap;
  }
  .es-datatable .table-filters .dataTables_filter {
    width: 100%;
    margin-bottom: 10px;
    padding: 0;
  }
  .es-datatable .table-filters .dataTables_filter label input {
    width: 100%;
    background-position: 2%;
  }
  .es-datatable .table-filters .es-datatable-filter.escalon-filter {
    margin-left: 0 !important;
    display: flex;
  }
  .es-datatable .table-filters .es-datatable-filter.escalon-filter select {
    max-width: 100% !important;
  }
}
.es-datatable table#templateList tbody tr td.form-builder-description {
  max-width: 260px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.es-datatable #domainDataList_wrapper.dataTables_wrapper table.domainDataList tr th {
  min-width: 70px !important;
}
.es-datatable .total_reviews {
  font-size: 14px;
}
.es-datatable td {
  padding: 10px 7px !important;
}
.es-datatable .form-switch label {
  display: inline-block !important;
}
.es-datatable .form-switch input {
  margin-top: 0px !important;
  margin-right: 5px;
  border-radius: 16px;
}
.es-datatable .es-input-date input {
  font-size: 12px;
  height: 30.4px;
  border-radius: 2px;
  cursor: text;
}
.es-datatable .es-input-date .datepicker input.pay_date {
  width: 180px;
  background-image: url(../img/calendar-line.png);
  background-repeat: no-repeat;
  background-position: 95%;
  background-size: 14px;
  padding-right: 25px;
}
.es-datatable .dataTables_info {
  padding-top: 0 !important;
}
.es-datatable .btn.evt-export {
  margin-right: 10px;
  background: #F7813D;
  border: 1px solid #F7813D;
  height: 30px !important;
  font-size: 13px !important;
  line-height: 28px;
  border-radius: 2px;
  padding: 0 12px !important;
  display: flex;
  font-weight: 500;
}
.es-datatable .btn.evt-export i {
  display: none;
}
@media screen and (max-width: 767px) {
  .es-datatable .dataTables_wrapper .datatable-search {
    padding: 0 1% !important;
  }
}
.es-datatable #ClientSetupList_wrapper table#ClientSetupList thead th:last-child {
  text-align: right;
  padding-right: 15px;
  width: auto !important;
}
.es-datatable #ClientSetupList_wrapper table#ClientSetupList tbody td:last-child:not(.dataTables_empty) {
  width: auto !important;
  text-align: right;
}
.es-datatable .es-datatable-filter {
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .es-datatable .es-datatable-filter {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.es-datatable .es-datatable-filter .es-input-text input.form-control {
  padding: 5.4px 8px;
  border: 1px solid #ced4da;
  border-radius: 2px;
}
.es-datatable .es-datatable-filter .es-input-date,
.es-datatable .es-datatable-filter #payroll_cycle_option,
.es-datatable .es-datatable-filter #client_select {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
}
.es-datatable .es-datatable-filter .es-input-date label.form-label,
.es-datatable .es-datatable-filter #payroll_cycle_option label.form-label,
.es-datatable .es-datatable-filter #client_select label.form-label {
  display: block;
  position: absolute;
  top: -7px;
  font-size: 9px;
  background-color: #fff;
  left: 8px;
  padding: 0;
  z-index: 9;
}
.es-datatable .es-datatable-filter .evt-download-excel {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  margin-left: -2px;
  position: relative;
  padding: 5.5px 10px;
}
.es-datatable .es-datatable-filter > span.select2.select2-container {
  margin-left: 8px;
}
.es-datatable .es-datatable-filter .es-select,
.es-datatable .es-datatable-filter .form-group {
  margin-left: 8px;
  margin-bottom: 0;
  position: relative;
}
.es-datatable .es-datatable-filter .es-select .head-count-label,
.es-datatable .es-datatable-filter .form-group .head-count-label {
  display: block;
  position: absolute;
  top: -7px;
  font-size: 9px;
  background-color: #fff;
  left: 8px;
  padding: 0;
  z-index: 9;
}
@media screen and (max-width: 767px) {
  .es-datatable .es-datatable-filter .es-select,
  .es-datatable .es-datatable-filter .form-group {
    flex: 0 0 48%;
    max-width: 48%;
    margin: 8px 1% !important;
    padding: 0 !important;
  }
  .es-datatable .es-datatable-filter .es-select .form-control,
  .es-datatable .es-datatable-filter .es-select .select2,
  .es-datatable .es-datatable-filter .form-group .form-control,
  .es-datatable .es-datatable-filter .form-group .select2 {
    width: 100% !important;
  }
  .es-datatable .es-datatable-filter .es-select #datepicker input,
  .es-datatable .es-datatable-filter .form-group #datepicker input {
    margin-bottom: 0 !important;
  }
}
.es-datatable .es-datatable-filter .es-select .select2,
.es-datatable .es-datatable-filter .form-group .select2 {
  min-width: 120px;
}
@media screen and (max-width: 767px) {
  .es-datatable .es-datatable-filter > .select2 {
    flex: 0 0 48%;
    max-width: 48%;
    margin: 1%;
  }
}
.es-datatable .es-datatable-filter .form-evt-error.qa-form-evt-error {
  margin-top: 0;
}
.es-datatable .es-datatable-filter select.form-control-sm {
  border-radius: 2px !important;
}
.es-datatable .es-datatable-filter select.form-control {
  margin: 0 7px;
}
.es-datatable .es-datatable-filter .filter-button {
  margin-left: 5px;
}
.es-datatable .es-datatable-filter label {
  display: none;
}
.es-datatable .row:first-child {
  margin-bottom: 10px;
  border-radius: 2px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}
.es-datatable .row:first-child .dataTables_length label,
.es-datatable .row:first-child .dataTables_filter label {
  width: 100%;
  display: flex;
  align-items: center;
}
.es-datatable .row:nth-child(2) {
  margin-top: 0px !important;
}
.es-datatable .row:last-child {
  align-items: center;
}
.es-datatable .row:last-child .col-sm-12.col-md-5 {
  display: none;
}
@media only screen and (max-width: 767px) {
  .es-datatable .row:last-child .col-sm-12.col-md-7 {
    flex-wrap: wrap;
    justify-content: center !important;
    gap: 12px;
  }
}
.es-datatable .row:last-child .dataTables_paginate {
  flex: 1;
  justify-content: end;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .es-datatable .row:last-child .dataTables_paginate {
    justify-content: center !important;
    min-width: 100%;
  }
}
.es-datatable .row:last-child .dataTables_paginate .pagination {
  margin: 0;
  justify-content: end;
}
.es-datatable .row:last-child .dataTables_paginate .pagination li {
  padding-right: 4px;
}
.es-datatable .row:last-child .dataTables_paginate .pagination li:last-child {
  padding-right: 0;
}
.es-datatable .row:last-child .dataTables_paginate .pagination li a {
  background-color: #E9ECEF;
  border-color: #fff;
  color: #6c757d;
  border-radius: 2px;
  padding: 5px 12px !important;
  font-weight: 400;
  text-align: center;
  box-shadow: none !important;
}
.es-datatable .row:last-child .dataTables_paginate .pagination li.previous a, .es-datatable .row:last-child .dataTables_paginate .pagination li.next a {
  background-color: #fff;
}
.es-datatable .row:last-child .dataTables_paginate .pagination li.next a {
  padding-right: 0 !important;
}
.es-datatable .row:last-child .dataTables_paginate .pagination li.active a {
  text-decoration: none;
  background: #F7813D;
  border: 1px solid #F7813D;
  color: #fff;
  z-index: 0;
}
.es-datatable .dt-row > div {
  padding: 0;
}
.es-datatable table.table {
  margin-bottom: 0 !important;
}
.es-datatable table.table thead tr {
  border: none;
}
.es-datatable table.table thead tr th {
  color: #495057;
  border-color: #dee2e6;
  font-weight: 500;
  white-space: nowrap;
  padding: 0.5rem 20px 0.5rem 0.5rem;
  background-color: #f8f9fa;
  border-width: 0 0 1px 0 !important;
}
@media only screen and (max-width: 1440px) {
  .es-datatable table.table thead tr th {
    font-size: 12px;
  }
  .es-datatable table.table thead tr th.sorting::before, .es-datatable table.table thead tr th.sorting::after {
    font-size: 0.65em;
    right: 0;
  }
}
.es-datatable table.table thead tr th .ri-eye-off-line {
  color: #868e96;
  padding-left: 5px;
}
.es-datatable table.table thead tr th:first-child {
  border-top-left-radius: 0;
}
.es-datatable table.table thead tr th:last-child {
  border-top-right-radius: 0;
}
.es-datatable table.table tbody {
  border-width: 0 1px;
  border-color: #eaeaea;
}
.es-datatable table.table tbody tr {
  --bs-table-accent-bg: $background-color_1;
}
.es-datatable table.table tbody tr td {
  color: #495057;
  border-color: #dee2e6;
  border-right: 0;
  border-left: 0;
  padding: 0.5rem 20px 0.5rem 0.5rem !important;
  vertical-align: middle;
  word-wrap: break-word;
  font-size: 12px !important;
  cursor: default;
}
.es-datatable table.table tbody tr td span img.es-client-pop {
  filter: invert(1) contrast(0);
  cursor: pointer;
}
.es-datatable table.table tbody tr td span img.es-client-pop:hover {
  filter: unset;
}
.es-datatable table.table tbody tr td span .ri-file-copy-line {
  font-size: 13px !important;
}
.es-datatable table.table tbody tr td span.custom-field-label-td {
  white-space: nowrap;
  display: inline-block;
  max-width: 100px;
  text-overflow: ellipsis;
  overflow: hidden;
  vertical-align: middle;
}
.es-datatable table.table tbody tr td span sup {
  vertical-align: middle;
}
.es-datatable table.table tbody tr td .es-client-pop {
  opacity: 0;
  transition: all 0.2s ease;
  padding-left: 4px;
  font-size: 13px;
  width: 14px;
  cursor: pointer;
}
.es-datatable table.table tbody tr td:hover .es-client-pop {
  visibility: visible;
  width: 14px;
  opacity: 1;
}
.es-datatable table.table tbody tr td:hover i.user-email {
  opacity: 1;
}
.es-datatable table.table tbody tr td .es-badge {
  padding: 0px 6px 2px 6px;
  border-radius: 2px;
  margin-right: 0;
  text-align: center;
  min-width: 62px;
  padding-top: 2px;
  display: inline-block;
  font-size: 11px !important;
}
.es-datatable table.table tbody tr td .success {
  background: #fff;
  border: 2px solid #d6e9c6;
  color: #3c763d;
}
.es-datatable table.table tbody tr td .danger {
  background: #fff;
  border: 2px solid #ebccd1;
  color: #a94442;
}
.es-datatable table.table tbody tr td .warning {
  background-color: #fff;
  border: 2px solid #faebcc;
  color: #8a6d3b;
}
.es-datatable table.table tbody tr td .info {
  background-color: #fff;
  border: 2px solid #bce8f1;
  color: #31708f;
}
@media only screen and (max-width: 1440px) {
  .es-datatable table.table tbody tr td {
    font-size: 12px;
    padding: 7px 6px;
  }
}
.es-datatable table.table tbody tr td a:hover {
  text-decoration: none;
}
.es-datatable table.table tbody tr td label {
  display: none;
}
.es-datatable table.table tbody tr td .form-group {
  margin-bottom: 0px;
}
.es-datatable table.table tbody tr td .es-quote {
  display: inline-block !important;
  right: 0px !important;
}
.es-datatable table.table tbody tr td .badge {
  display: table;
  margin: auto;
  position: relative;
  right: 9px;
}
.es-datatable table.table tbody tr td.autoWidth {
  width: 1.5% !important;
  min-width: 20px;
  white-space: nowrap;
}
.es-datatable table.table tbody tr td.autoWidth small:last-child, .es-datatable table.table tbody tr td.autoWidth .small:last-child {
  font-weight: 400;
}
.es-datatable table.table tbody tr td.es-url .small {
  width: 718px;
  font-weight: 500;
}
.es-datatable table.table tbody tr td .small {
  font-size: 11px;
}
.es-datatable table.table tbody tr td a.editClientSetup,
.es-datatable table.table tbody tr td a.deleteClientSetup,
.es-datatable table.table tbody tr td .evt-log {
  color: #868e96;
  text-decoration: none;
  border: none;
  font-size: 13px;
  margin-right: 8px;
}
.es-datatable table.table tbody tr td .evt-log {
  text-decoration: none;
}
.es-datatable table.table tbody tr td i:hover {
  color: #F7813D;
}
.es-datatable table.table tfoot {
  display: none;
}
.es-datatable .c3_label {
  background-color: #f8f9fa;
  border: 1px solid #ced4da;
  text-transform: capitalize;
  border-radius: 2px;
  line-height: normal;
  padding: 0px 2px 2px;
  margin-left: 2px;
  vertical-align: super;
  position: relative;
  top: 3px;
  font-size: 10px;
}
.es-datatable .status_bar {
  display: flex;
  position: relative;
  width: 116px;
  margin: 5px 0;
  align-items: center;
}
.es-datatable .status_bar .approved {
  color: #00b894;
  border-color: #00b894;
  background-color: #fff;
}
.es-datatable .status_bar .approved.b-approved::before {
  background-color: #00b894;
}
.es-datatable .status_bar span {
  display: flex;
  height: 20px;
  width: 20px;
  text-align: center;
  line-height: 17px;
  border: 2px solid #d8dde1;
  border-radius: 50px;
  font-size: 14px;
  font-weight: bold;
  margin-right: 30px;
  flex: 0 0 20px;
  max-width: 20px;
  position: relative;
  align-items: center;
}
@media only screen and (max-width: 1400px) {
  .es-datatable .status_bar span {
    line-height: 16px;
  }
}
.es-datatable .status_bar span::before {
  content: "";
  min-height: 2px;
  width: 40px;
  position: absolute;
  background-color: #d9d9d9;
  top: 50%;
  z-index: 0;
  left: 18px;
  display: inline-block;
  transform: translateY(-50%);
}
.es-datatable .status_bar span:last-child::before {
  content: none;
}
.es-datatable .status_bar span i {
  position: relative;
  z-index: 9;
  background-color: #fff;
  border-radius: 50px;
  height: 100%;
  width: 100%;
  display: inline-block;
  line-height: 18px;
}
@media only screen and (max-width: 1400px) {
  .es-datatable .status_bar span i {
    line-height: 16px;
  }
}
.es-datatable .status_bar .rejected {
  color: #d63031;
  border-color: #d63031;
}
.es-datatable .status_bar .pending {
  color: #d8dde1;
  border-color: #d8dde1;
}
.es-datatable .auditor_name {
  color: #495057;
}
.es-datatable .auditor_name span.select2.select2-container {
  position: absolute;
  left: 0;
  width: 100% !important;
  top: 0;
}
.es-datatable .auditor_name span.select2.select2-container span.select2-selection.select2-selection--single {
  border: none;
  background-color: transparent;
  box-shadow: none;
}
.es-datatable .auditor_name span.select2.select2-container span.select2-selection.select2-selection--single .select2-selection__rendered {
  opacity: 0;
}
.es-datatable .auditor_name span.select2.select2-container span.select2-selection.select2-selection--single span.select2-selection__arrow {
  top: auto;
  bottom: -7px;
  width: 12px;
  height: 12px;
  background-color: #495057;
  border-radius: 50px;
  text-align: center;
  left: auto;
  right: -4px;
}
.es-datatable .auditor_name span.select2.select2-container span.select2-selection.select2-selection--single span.select2-selection__arrow b {
  margin-left: -3px;
  border-width: 3.5px 3.5px 0 3.5px;
  border-color: #fff transparent transparent transparent;
  margin-top: -1px;
}
.es-datatable .action a {
  color: #868e96;
  text-decoration: none;
  border: none;
  font-size: 18px;
  margin-right: 4px;
}
.es-datatable .table-responsive {
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .es-datatable .datatable-search .dataTables_filter {
    width: 100%;
  }
  .es-datatable .datatable-search .dataTables_filter label {
    max-width: 100% !important;
  }
  .es-datatable .escalon-evt-filterarea .form-control {
    margin-left: 0 !important;
    width: 100% !important;
  }
  .es-datatable .dataTables_wrapper .row:first-child {
    flex-wrap: wrap;
    margin-bottom: 10px !important;
  }
  .es-datatable .dataTables_wrapper .row:first-child .datatable-search,
  .es-datatable .dataTables_wrapper .row:first-child .es-datatable-filter {
    flex: 0 0 100%;
    max-width: 100%;
    flex-wrap: wrap;
  }
  .es-datatable .dataTables_wrapper .row:first-child .datatable-search > div,
  .es-datatable .dataTables_wrapper .row:first-child .es-datatable-filter > div {
    margin-bottom: 10px;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1300px) {
  .es-datatable .dataTables_wrapper .es-datatable-filter #datepicker .form-control {
    max-width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1140px) {
  .es-datatable div#DashboardList_wrapper .row .es-datatable-filter {
    flex: 0 0 100%;
    max-width: 100%;
    justify-content: start;
    margin-top: 15px;
    padding-left: 0;
    flex-wrap: wrap;
  }
  .es-datatable div#DashboardList_wrapper .row .es-datatable-filter .es-input-date {
    padding-left: 0;
    margin-right: 0;
  }
  .es-datatable div#DashboardList_wrapper .row .es-datatable-filter .es-input-date .datepicker input.form-control {
    max-width: 100%;
  }
  .es-datatable div#DashboardList_wrapper .row .es-datatable-filter > .select2.select2-container,
  .es-datatable div#DashboardList_wrapper .row .es-datatable-filter .evt-download-excel {
    margin-bottom: 10px;
  }
  .es-datatable div#DashboardList_wrapper .row .es-datatable-filter .form-group {
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 1200px) {
  .es-datatable .dataTables_wrapper .row .escalon-evt-filterarea,
  .es-datatable .dataTables_wrapper .row .escalon-filter {
    padding-right: 0 !important;
  }
  .es-datatable .dataTables_wrapper .row .escalon-evt-filterarea .form-evt-error,
  .es-datatable .dataTables_wrapper .row .escalon-filter .form-evt-error {
    margin-bottom: 0 !important;
  }
}
.es-datatable .dataTables_wrapper .row .escalon-filter .select2.select2-container {
  min-width: 125px;
  margin-left: 7px;
  margin-right: 7px;
}
.es-datatable .dataTables_wrapper .row .escalon-filter .select2.select2-container span.select2-selection__arrow {
  background-image: url(/img/arrow-down-s-line.png) !important;
  background-repeat: no-repeat;
  background-position: 98%;
  background-size: 13px;
  padding-right: 25px;
}
.es-datatable .dataTables_wrapper .row .escalon-filter .select2.select2-container span.select2-selection__arrow b {
  display: none;
}
@media only screen and (max-width: 767px) {
  .es-datatable .dataTables_wrapper .row .escalon-filter .select2.select2-container {
    margin-left: 0;
    min-width: 100%;
  }
}
.es-datatable .dataTables_wrapper .row .escalon-filter span.select2-results ul.select2-results__options {
  white-space: normal;
}
.es-datatable .dataTables_wrapper .row .escalon-filter #clear-filter,
.es-datatable .dataTables_wrapper .row .escalon-filter #clear-filter-dashboard {
  background-color: transparent;
  border: none;
  color: #f58e25;
  margin-left: 3px;
  font-size: 12px;
}
.es-datatable .dataTables_wrapper#apiconList_wrapper .row:first-child {
  margin-right: 0;
}
.es-datatable .dataTables_wrapper#apiconList_wrapper .row:first-child .escalon-filter .es-select {
  max-width: 125px;
}
.es-datatable .dataTables_wrapper#apiconList_wrapper .row:first-child .escalon-filter .es-select select.form-control {
  width: 100% !important;
  max-width: 100%;
  margin: 0;
}
.es-datatable .dataTables_wrapper#apiconList_wrapper .row:first-child .escalon-filter .es-select .select2-container {
  right: 0;
  left: auto;
}
.es-datatable .dataTables_wrapper#apiconList_wrapper .row:first-child .escalon-filter .es-select .select2-container .es-service-dropdown {
  width: 390px !important;
  right: 0;
  left: auto;
}
.es-datatable #PayrollList_wrapper table#PayrollList thead tr th {
  vertical-align: top !important;
}
.es-datatable #PayrollList_wrapper table#PayrollList thead tr th .es-collapse-table thead th {
  border-radius: 0;
  height: 50px;
}
.es-datatable .row:empty {
  display: none;
}
.es-datatable.es-payroll-datatable {
  overflow-x: auto;
}
.es-datatable.es-payroll-datatable .dataTables_wrapper .dt-row {
  margin: 0;
}
.es-datatable.es-payroll-datatable .dataTables_wrapper .dt-row > div {
  overflow-x: auto;
  margin-bottom: 10px;
}
.es-datatable.es-payroll-datatable table tfoot {
  border-top: 0;
}
.es-datatable.es-payroll-datatable table tfoot td {
  border-left: 0 !important;
  border-right: 0;
}
.es-datatable.es-payroll-datatable table#PayrollList {
  margin-bottom: 0;
}
.es-datatable.es-payroll-datatable table#PayrollList > tbody > tr > td:not(.expand-table-head) {
  border-left: 0 !important;
}
.es-datatable.es-payroll-datatable table#PayrollList .es-collapse-table tbody {
  border: none;
}
.es-datatable.es-payroll-datatable table#PayrollList .es-collapse-table tbody td {
  border: none;
  padding: 0;
  box-shadow: none !important;
}
.es-datatable #DashboardList_wrapper {
  padding-top: 5px;
}
.es-datatable #DashboardList_wrapper .es-datatable-filter {
  position: relative;
}
.es-datatable #DashboardList_wrapper .es-datatable-filter #check_dt {
  padding-left: 0;
}
@media only screen and (max-width: 767px) {
  .es-datatable #DashboardList_wrapper .es-datatable-filter .evt-download-excel {
    position: absolute;
    bottom: 7.5px;
    left: 49%;
  }
}

.es-btn-cancel {
  background-color: #fff;
  border: 1px solid #ced4da !important;
  padding: 0px 6px !important;
  color: #495057;
}

.es-btn-cancel:hover {
  background-color: #ced4da;
  color: #495057;
}

.es-btn-delete {
  background-color: #fff;
  border: 1px solid #dc3545 !important;
  padding: 1px 3px !important;
  color: #dc3545;
}

.es-btn-delete:hover {
  background-color: #dc3545;
  color: #fff !important;
}

.nav-item .indicator {
  background: #dc3545 !important;
}

.es-coordinator-template-head .es-btn-delete {
  min-width: 24px;
  height: 24px !important;
  line-height: 22px;
}
.es-coordinator-template-head .es-btn-delete i {
  color: #dc3545;
}
.es-coordinator-template-head .es-btn-delete:hover {
  background-color: #fff;
  color: #dc3545 !important;
}

.form-label {
  color: #212529;
  margin-bottom: 3px;
  position: relative;
  font-weight: 400;
}
.form-label.required:after {
  content: "*";
  color: #dc3545;
}

.was-validated .form-control:valid {
  border-color: var(--bs-border-color);
  background-image: none;
}

.btn-block > .btn {
  margin: 0.22rem 0.12rem;
}

.modal-design-btn button.btn.es-btn-primary {
  float: left;
}

.modal-design-btn .btn {
  margin: 0.22rem 0.22rem !important;
}

.btn {
  border-radius: 2px;
  margin: 0 1px;
}
.btn.disabled, .btn:disabled {
  pointer-events: none;
  opacity: 0.65;
}
.btn .es-btn-delete {
  background: #fff;
  border: 1px solid #dc3545;
  color: #dc3545;
}
.btn .es-btn-delete:hover, .btn .es-btn-delete:focus, .btn .es-btn-delete:active {
  background: #dc3545;
  color: #fff;
  border: 1px solid #dc3545;
}
.btn .es-btn-cancel {
  background: #fff;
  border: 1px solid #ced4da;
  color: #495057;
}
.btn .es-btn-cancel:hover {
  background: #ced4da;
  color: #495057;
  border: 1px solid #ced4da;
}
.btn .es-btn-default {
  background: #495057;
  border: 1px solid #424649;
  color: #fff;
}
.btn .es-btn-default:hover, .btn .es-btn-default:focus, .btn .es-btn-default:active {
  background: #424649;
  color: #fff;
  border: 1px solid #424649;
}
.btn .es-btn-save {
  background: #F7813D;
  border: 1px solid #de7513;
  color: #fff;
}
.btn .es-btn-save:hover, .btn .es-btn-save:focus, .btn .es-btn-save:active {
  background: #de7513;
  color: #fff;
  border: 1px solid #de7513;
}

.modal_custom_header .modal-title {
  color: #343A40;
  line-height: normal;
  font-size: 16px;
  font-weight: normal;
}
.modal_custom_header button.btn-close {
  background-color: #fff;
  background-image: none;
  opacity: 1;
  height: 37px;
  width: 37px;
  border-radius: 50px;
  position: absolute;
  right: -15px;
  top: -15px;
  padding: 0px;
}
.modal_custom_header button.btn-close i {
  color: #888;
  border: 1px solid #888;
  border-radius: 50px;
  height: 28px;
  width: 28px;
  display: flex;
  margin: -1px auto 0;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}

.nav-icon:hover {
  color: #dc3545 !important;
}

.es-fixed-scroll {
  max-height: 400px;
  overflow-y: auto;
  scrollbar-color: #b6b4b4 #cfd1d2;
  scrollbar-width: thin;
}
.es-fixed-scroll::-webkit-scrollbar {
  height: 6px;
  width: 6px;
  background-color: #f5f5f5;
}
.es-fixed-scroll::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border: 6px solid #ccc;
  border-radius: 10px;
}
.es-fixed-scroll table thead,
.es-fixed-scroll table tfoot {
  position: sticky;
}
.es-fixed-scroll table thead {
  inset-block-start: 0;
}
.es-fixed-scroll table tfoot {
  inset-block-end: 0;
}

table.dataTable {
  margin-top: 0 !important;
  border: none !important;
}

.es-create-policy a {
  background-color: #F7813D;
  border-radius: 2px;
  padding: 4px 7px;
  color: #fff;
}

.es-affect {
  position: relative;
}
.es-affect .es-affect-heading {
  position: absolute;
  left: 0;
  width: auto;
}

.es-box-background-border {
  border: 1px solid #eaf0fe;
  border-radius: 2px !important;
}
.es-box-background-border i {
  color: #495057 !important;
}

span.select2-dropdown {
  border: none;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  margin-top: 3px;
}
span.select2-dropdown.email-setup-dropdown, span.select2-dropdown.increasezindex {
  max-width: 320px;
}
span.select2-dropdown span.select2-search.select2-search--dropdown input.select2-search__field {
  font-size: 14px;
  height: 28px;
  border-radius: 2px;
  outline: none !important;
  border-color: #ccc;
}
span.select2-dropdown .select2-results__option--highlighted[aria-selected] {
  background-color: #f1f3f5;
}
span.select2-dropdown .select2-results__option[aria-selected=true] {
  background-color: #f1f3f5;
}
span.select2-dropdown .select2-results__option--highlighted[aria-selected] {
  background-color: #f1f3f5;
}
span.select2-dropdown ul li {
  font-size: 12px;
  padding: 6px !important;
  color: #343A40 !important;
}

/*------------------------------------------ Form Structure --------------------------------------*/
.es-help .es-card {
  background-color: #f4fce3;
}
.es-help .es-card .es-card-header {
  background-color: #f4fce3;
}

.file-storage-filter .es-file-section-search {
  margin-bottom: 0;
}

.es-card {
  background-color: #fff;
  border-radius: 2px;
  position: relative;
  box-shadow: 0 3px 3px rgba(56, 65, 74, 0.1);
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.125);
  /*& + & {
    margin-top: 1rem; 
  }*/
}
.es-card .es-card-body {
  padding: 8px 13px !important;
}
.es-card .es-card-body .activity-dropdown-filter {
  margin-right: 4px;
}
.es-card .es-card-body .activity-dropdown-filter .select2.select2-container {
  width: 210px !important;
  margin-right: 4px;
}
.es-card .es-card-body .activity-dropdown-filter .select2.select2-container .select2-selection--single {
  border-color: #ced4da;
  border-radius: 2px !important;
}
.es-card .es-card-body .activity-dropdown-filter .select2.select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 27.6px !important;
}
.es-card .es-card-body .es-file-action-btn .es-file-action-link {
  border: 1px solid #ccc;
  width: 24px;
  height: 24px;
  display: inline-block;
  padding: 1px;
  line-height: 21px;
  text-align: center;
  cursor: pointer;
  border-radius: 2px;
}
.es-card .es-card-body .es-file-action-btn .es-file-action-link:hover {
  border-color: #F7813D;
  background-color: #F7813D;
}
.es-card .es-card-body .es-file-action-btn i {
  font-size: 16px;
  cursor: pointer;
}
.es-card .es-card-body .es-file-action-btn div {
  margin-left: 10px;
  line-height: normal;
}
.es-card .es-card-body .es-file-action-btn div:hover i {
  color: #fff;
}
.es-card .es-card-header {
  background-color: #f8f9fa;
  padding: 0 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 2px 2px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 46px;
}
.es-card .es-card-header .es-card-tabLinks {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
  margin-top: 13px;
}
@media only screen and (max-width: 767px) {
  .es-card .es-card-header .es-card-tabLinks {
    margin-top: 0;
  }
}
.es-card .es-card-header .es-card-tabLinks li {
  margin-right: 4px;
}
.es-card .es-card-header .es-card-tabLinks li a {
  color: #343A40;
  padding: 0.5rem 0.7rem;
  border: 1px solid transparent;
  display: block;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  font-weight: 400;
}
@media only screen and (max-width: 1025px) {
  .es-card .es-card-header .es-card-tabLinks li a {
    font-size: 11px;
  }
}
.es-card .es-card-header .es-card-tabLinks li a:hover {
  color: #F7813D;
  background: #fff;
  border-left: 1px solid #F7813D;
  border-right: 1px solid #F7813D;
  border-top: 1px solid #F7813D;
  border-radius: 2px;
}
.es-card .es-card-header .es-card-tabLinks li a.active {
  color: #F7813D;
  background: #fff;
  font-weight: 600;
  border-left: 1px solid #F7813D;
  border-right: 1px solid #F7813D;
  border-top: 1px solid #F7813D;
  border-radius: 2px;
}
@media only screen and (max-width: 767px) {
  .es-card .es-card-header {
    height: auto;
    padding: 10px 15px 0;
    flex-wrap: wrap;
    gap: 4px;
  }
  .es-card .es-card-header .es-card-header-cta {
    margin-top: 2px;
    padding: 6px 10px;
  }
  .es-card .es-card-header .es-head-info {
    flex-wrap: wrap;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .es-card .es-card-header .es-head-info label {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .es-card .es-card-header .es-head-info .es-head-item {
    margin-bottom: 0;
  }
  .es-card .es-card-header .es-head-info .es-card-header-cta {
    margin-top: 3px;
  }
  .es-card .es-card-header .es-head-info .es-select {
    margin-bottom: 4px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1099px) {
  .es-card .es-card-header .es-head-info {
    flex-wrap: wrap;
    padding-left: 15px;
  }
}
@media only screen and (min-width: 1100px) and (max-width: 1400px) {
  .es-card .es-card-header .es-head-info {
    flex-wrap: wrap;
    padding-left: 10px;
  }
  .es-card .es-card-header .es-head-info .es-head-item {
    margin-right: 10px !important;
    font-size: 11px;
  }
  .es-card .es-card-header .es-head-info .es-head-item strong {
    display: block;
  }
}
.es-card .es-card-header .es-card-title {
  margin-bottom: 0 !important;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: #495057;
}
.es-card .es-card-header .es-card-header-cta.es-btn:hover {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .es-card .es-card-header .es-card-header-cta {
    font-size: 12px;
  }
}
.es-card .es-card-body {
  padding: 1rem 0.5rem 1.5rem;
}
@media screen and (max-width: 1440px) {
  .es-card .es-card-body {
    padding: 10px;
  }
}
.es-card .es-card-body .es-card-save {
  position: absolute;
  right: 15px;
  bottom: 15px;
}
.es-card .es-card-body .form-switch {
  padding-left: 0;
}
.es-card .es-card-body .form-switch .form-check-label {
  display: block;
}
.es-card .es-card-body .form-switch input {
  display: block;
  margin-top: 9px;
  margin-left: 0;
}
.es-card .es-card-body .es-card-subhead-storage h4, .es-card .es-card-body .es-card-subhead-storage .h4 {
  position: absolute;
  padding-top: 12px;
}
.es-card .es-card-body .es-card-subhead {
  padding-top: 0px;
  color: #343A40;
  font-size: 14px;
  font-weight: 600;
}
.es-card .es-card-body .es-card-subhead h4, .es-card .es-card-body .es-card-subhead .h4 {
  margin-bottom: 0px;
}
.es-card .es-card-body .es-card-subhead h4 span, .es-card .es-card-body .es-card-subhead .h4 span {
  color: #495057;
  font-size: 12px;
}
.es-card .es-card-body .es-card-subhead a {
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .es-card .es-card-body .es-head-info {
    flex-wrap: wrap;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .es-card .es-card-body .es-head-info label {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .es-card .es-card-body .es-head-info .es-head-item {
    margin-bottom: 0;
  }
  .es-card .es-card-body .es-head-info .es-card-header-cta {
    margin-top: 3px;
  }
  .es-card .es-card-body .es-head-info .es-select {
    margin-bottom: 4px;
  }
}
.es-card h5, .es-card .h5 {
  font-size: 14px !important;
}
.es-card h6, .es-card .h6 {
  font-size: 14px;
  font-weight: 600;
  color: #495057;
}
.es-card .es-card-footer {
  text-align: right;
}
.es-card .es-card-footer .es-cancel {
  color: #343A40;
}
.es-card .es-card-footer .es-bg-btn {
  background-color: #F7813D;
  color: #fff;
  margin-left: 11px;
  padding: 5px 12px;
}
.es-card .es-card-head {
  padding: 10px 24px 10px 13px;
  line-height: normal;
  border-bottom: 2px solid #e9ebec;
  font-size: 18px;
  font-weight: 500;
  margin: -26px -30px -13px -26px;
  background-color: #eaf0fe;
  border-radius: 2px 2px 0 0;
}
.es-card .es-card-head i {
  background-color: #e9ebec;
  height: 30px;
  width: 30px;
  border-radius: 2px;
  text-align: center;
  line-height: 30px;
  font-size: 17px;
  margin-right: 10px;
}

.es-bg-btn {
  border-radius: 2px;
  font-size: 14px;
  line-height: normal;
  padding: 3px 15px 5px;
}

.sub_heading {
  text-transform: capitalize;
}

.form-evt-error {
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #dc3545;
  height: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.btn-no {
  background: none;
  border: none;
  padding: 0;
}

.loader_overlay {
  height: 100%;
  width: 100%;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999999;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
}

.content header .cu-filter-block.es-add.es-add-new-user {
  top: 136px;
}

.dataTable.table-hover > tbody > tr:hover td.dataTables_empty {
  background-color: transparent;
}

.common_modal .modal-content {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 2px;
}

.common_modal .modal-dialog .modal-content .modal-header {
  padding: 10px 15px;
  border-color: #DEE2E6;
  background-color: #f1f1f1;
  border-bottom: 1px solid #DEE2E6;
}
.common_modal .modal-dialog .modal-content .modal-header i {
  font-size: 20px;
  cursor: pointer;
}
.common_modal .modal-dialog .modal-content .modal-body {
  padding: 0px 10px;
  padding-top: 12px;
}
.common_modal .modal-dialog .modal-content .modal-body .es-logout-content {
  font-size: 14px;
  padding-bottom: 16px;
}
.common_modal .modal-dialog .modal-content .modal-body .es-logout-content p {
  font-size: 40px;
  margin-bottom: 5px;
  line-height: 40px;
}
.common_modal .modal-dialog .modal-content .modal-body .es-logout-content p i {
  color: #dc3545 !important;
}
.common_modal .modal-dialog .modal-content .modal-footer {
  border-top: 1px solid #DEE2E6;
}
.common_modal .modal-dialog .modal-footer {
  padding: 8px 10px;
}

.es-groups .form-check {
  margin-right: 20px;
  margin-bottom: 10px;
}

.es-dropdown-menu-header {
  text-align: justify !important;
}

.es-scroll {
  overflow-y: auto;
  max-height: 227px;
  scrollbar-color: #9d9d9d #cfd1d2;
  scrollbar-width: thin;
  margin: 3px 3px 3px 0;
}
.es-scroll::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.es-scroll::-webkit-scrollbar-track-piece {
  background-color: #cfd1d2;
}
.es-scroll::-webkit-scrollbar-thumb:vertical {
  height: 8px;
  background-color: #9d9d9d;
}

/* Form */
.form-group {
  margin-bottom: 0.6rem;
  border-radius: 2px;
}

.form-control,
.form-select {
  padding: 0.3rem 0.5rem;
  border-radius: 2px;
}
.form-control:focus,
.form-select:focus {
  box-shadow: none;
}
.form-control[readonly],
.form-select[readonly] {
  background: #fff;
}

.form-label,
.form-check-label {
  margin-bottom: 0.15rem !important;
}

.form-check-input:focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0 rgba(64, 81, 137, 0.25);
  box-shadow: 0 0 0 0 rgba(64, 81, 137, 0.25);
}

.widget-external-link i {
  color: #0a58ca;
  font-weight: 600;
}

.share-file {
  margin-right: 3px;
}
.share-file img {
  width: 14px;
  margin-top: -5px;
  border-radius: 2px;
}

.form-switch .form-check-input:focus {
  border: 1px solid #dee2e6 !important;
  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='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked:focus {
  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");
}

.input-group .input-group-text {
  border-radius: 2px;
}
.input-group .input-group-text + .form-control {
  border-top-right-radius: 4px !important;
  border-bottom-right-radius: 4px !important;
}

form .checked-pd label {
  padding: 2px 4px;
}
form .radio-pd label {
  padding: 2px 6px;
}
form .input-group-text {
  padding: 0rem 0.85rem !important;
}

select.form-control, select.form-select {
  background-image: url(/img/arrow-down-s-line.png) !important;
  background-repeat: no-repeat;
  background-position: 98%;
  background-size: 13px;
  padding-right: 25px;
  border-color: #ced4da;
}

.es-cards-email {
  max-width: 200px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (max-width: 1440px) {
  .es-cards-email {
    max-width: 165px;
  }
}

.input-group #datepicker .form-control {
  padding-left: 2px;
}
.input-group textarea.form-control {
  height: 58px !important;
}
.input-group select.form-control {
  background-image: url("/img/arrow-down-s-line.png") !important;
  background-repeat: no-repeat;
  background-position: 98%;
  background-size: 17px;
  margin: 0;
}
.input-group input[type=date].is-invalid,
.input-group input[type=number].is-invalid {
  padding-right: 30px;
}
.input-group .form-control.is-invalid {
  border-color: #dc3545 !important;
}

/*Popovers*/
.popover .popover-body {
  padding: 0.35rem 0.5rem;
}
.popover .popover-body ul {
  padding-top: 10px;
  padding-left: 15px;
  margin-bottom: 3px;
}
.popover .popover-body ul li {
  padding-bottom: 7px;
}

.tooltip .tooltip-inner {
  font-size: 13px;
}

div ~ .es-card-subhead {
  margin-top: 20px;
}

.es-card-subhead {
  position: relative;
  margin-bottom: 20px;
}
.es-card-subhead:after {
  display: block;
  width: 50px;
  position: relative;
  border-bottom: 2px solid #343A40;
  bottom: -5px;
}

.dataTables_length label select {
  margin-left: 6px;
  margin-right: 6px;
  border-radius: 2px;
  border-color: #DEE2E6;
  font-size: 11px;
  color: #868E96;
  min-width: 60px !important;
  height: 26px !important;
  min-height: 26px;
  padding: 0px 6px;
  margin-top: 0;
  margin-right: 10px;
}
.dataTables_length label select:focus {
  border-color: #ced4da;
}

@media (min-width: 1500px) {
  .modal-xl {
    max-width: 1349px;
  }
}
div.dataTables_processing {
  position: fixed;
  top: 0% !important;
  left: 0% !important;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  height: 100%;
  justify-content: center;
  align-items: center;
  margin-left: 0px !important;
  margin-top: 0px !important;
}
div.dataTables_processing div:last-child {
  width: 80px;
  height: 15px;
  margin: auto;
  display: table;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
}
div.dataTables_processing div:last-child div {
  background: #fff !important;
}

.icon-spin {
  display: inline-block;
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
}

@-webkit-keyframes rotating

/* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.es-groupList {
  border-right: 1px solid rgba(0, 0, 0, 0.125);
  padding-right: 0;
}
.es-groupList ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  max-height: calc(100vh - 280px);
  overflow-y: auto;
}
.es-groupList ul li {
  list-style: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  padding: 0.5rem;
  cursor: pointer;
  transition: all;
}
.es-groupList ul li:hover {
  background: #f8f9fa;
}
.es-groupList ul li.active {
  background: #ced4da;
  color: #212529;
  border-color: transparent;
}

select.es-multiselect {
  padding: 0;
  background-color: #fff !important;
  height: 276px;
  overflow-y: auto;
  background-image: none !important;
  max-height: 276px;
}
select.es-multiselect option {
  padding: 5px 12px;
}

.es-group-groupContent {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.es-group-groupContent .es-group-members,
.es-group-groupContent .es-group-multiSelectUsers {
  width: 220px;
}
.es-group-groupContent .es-group-actions {
  text-align: center;
  width: 120px;
  margin: 0 2rem;
}
.es-group-groupContent .es-group-actions .btn {
  width: 100%;
  margin: 5px 0;
}

.favourite i.ri-star-fill {
  color: #F7813D !important;
}

.es-grouplist {
  max-height: 53vh;
  min-height: 53vh;
  overflow-y: auto;
  padding: 10px 0 0;
  list-style: none;
}
.es-grouplist li a {
  color: #495057;
  border-bottom: 1px solid #f7f7f7;
  display: block;
  padding: 5px 10px;
}
.es-grouplist li a:hover, .es-grouplist li a.active {
  color: #F7813D;
}

.es-control-btn {
  display: flex;
  align-items: center;
}
.es-control-btn button.btn {
  background-color: #fff;
  height: 30px;
  width: 30px;
  border-radius: 50px;
  text-align: center;
  display: flex;
  align-content: center;
  justify-content: center;
  line-height: 18px;
  margin: 0 5px;
  border: 1px solid #cccccc;
}

.es-control-head {
  padding-top: 17px;
}

.es-rules-section {
  border-top: 1px solid #f7f7f7;
  padding-top: 14px;
}
.es-rules-section .es-rule-input select {
  width: 223px;
}
.es-rules-section .es-rule-input label {
  display: none;
}
.es-rules-section .es-rule-add {
  margin-left: 45px;
  border-radius: 50%;
  line-height: 15px;
  padding: 2px;
  height: 21px;
  width: 21px;
  display: inline-block;
  border: 1px solid #3b7ddd;
}
@media only screen and (max-width: 576px) {
  .es-rules-section .es-rule-add {
    margin-right: 48px;
  }
}
.es-rules-section .es-rule-remove {
  margin-left: auto;
  line-height: 13px;
  border-radius: 50%;
  padding: 2px;
  height: 21px;
  width: 21px;
  margin-top: 0;
  border: 1px solid #dc3545;
}
.es-rules-section .es-rule-remove i {
  color: #dc3545;
  margin-left: -1px;
}

.es-append-url {
  margin-bottom: 10px;
}
.es-append-url .es-rules-section {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  border: none;
}
.es-append-url .es-rules-section .es-rule-remove {
  margin: 0 0 0 5px;
  flex: 0 0 18px;
  max-width: 18px;
  height: 18px;
  line-height: 13px;
  background-color: #fff;
}
.es-append-url .form-group.es-input-text {
  margin-bottom: 0;
}

.es-multitext-section {
  padding-left: 45px;
}
@media only screen and (max-width: 781px) {
  .es-multitext-section {
    margin-left: 0px;
  }
}
.es-multitext-section select.es-multiselect {
  max-height: 142px !important;
  height: 142px !important;
  width: 226px;
  flex: 0 0 226px;
  max-width: 226px;
}
.es-multitext-section .es-textarea {
  flex: 1;
  padding-left: 10px;
}
@media only screen and (max-width: 781px) {
  .es-multitext-section .es-textarea {
    width: 100%;
  }
}
.es-multitext-section textarea {
  max-height: 142px;
  height: 142px;
}

.es-name-scope .es-custom-col {
  width: 294px;
}
.es-name-scope .es-scope {
  padding-left: 6px;
}
@media only screen and (max-width: 781px) {
  .es-name-scope .es-scope {
    padding-left: 11px;
  }
}

.es-reviews h5, .es-reviews .h5 {
  flex: 0 0 100%;
  max-width: 100%;
  font-size: 14px;
  color: #495057;
  font-weight: 600;
}
.es-reviews h5 span, .es-reviews .h5 span {
  color: #adb5bd;
}

.es-review-item {
  border-radius: 2px;
  border: 1px solid #f1f3f5;
  background: #f8f9fa;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.08);
  margin-right: 15px;
  padding: 6px 12px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1024px) {
  .es-review-item {
    margin-right: 10px;
  }
}
.es-review-item p {
  font-size: 12px;
  margin-bottom: 0;
}

.es-review-head {
  display: flex;
  align-items: center;
}
.es-review-head h6, .es-review-head .h6 {
  margin: 0;
  font-size: 13px;
  color: #495057;
  vertical-align: middle;
}
.es-review-head h6 i, .es-review-head .h6 i {
  vertical-align: middle;
  color: #868e96;
  margin-right: 2px;
  position: relative;
  top: -2px;
}
.es-review-head span {
  color: #495057;
  opacity: 0.6;
  font-size: 12px;
  margin: 0 10px;
}

.review-status {
  line-height: normal;
  font-size: 13px;
  padding: 4px 7px;
  border-radius: 2px;
  margin-left: 5px;
}
.review-status.status-approved {
  background-color: #ebfbee;
  color: #40c057;
}

.status-disapproved {
  background-color: #fff4e6;
  color: #fc8e25;
}

.status-reopened {
  color: #3374c0;
  background-color: #dcecff;
}

.status-shared {
  color: #cfc42a;
  background-color: #f9f8e4;
}

.status-rejected {
  color: #c81717;
  background-color: #ffdada;
}

.status-draft {
  color: #333;
  background-color: #ccc;
}

.status-generated {
  color: #118689;
  background-color: #dbf7f8;
}

.es-head-action {
  margin-bottom: 8px;
}
.es-head-action a {
  text-decoration: none;
  color: #495057;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  margin-right: 20px;
}
.es-head-action a i {
  margin-right: 3px;
  color: #868e96;
}

.card-one-border {
  border-top: 2px solid #3b76ef !important;
}

.card-two-border {
  border-top: 2px solid #63c7ff !important;
}

.card-three-border {
  border-top: 2px solid #a66dd4 !important;
}

.card-four-border {
  border-top: 2px solid #6dd4b1 !important;
}

.card-five-border {
  border-top: 2px solid #e793d3 !important;
}

.es-policy-card .card-header {
  padding: 8px;
}
.es-policy-card .card-header h2, .es-policy-card .card-header .h2 {
  padding: 0px;
}
.es-policy-card .card-header i {
  font-size: 24px;
}
@media only screen and (max-width: 767px) {
  .es-policy-card .col-lg-2 .card-header h3, .es-policy-card .col-lg-2 .card-header .h3 {
    font-size: 25px;
  }
  .es-policy-card .col-lg-2 .card-header h2, .es-policy-card .col-lg-2 .card-header .h2 {
    font-size: 13px !important;
  }
  .es-policy-card .col-lg-2 .card-header i {
    font-size: 18px;
  }
}
@media only screen and (max-width: 480px) {
  .es-policy-card .col-lg-2 {
    width: 100%;
  }
}
@media only screen and (min-width: 481px) and (max-width: 767px) {
  .es-policy-card .col-lg-2 {
    width: 50%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .es-policy-card .col-lg-2 {
    width: 33.33%;
  }
  .es-policy-card .col-lg-2 .card-header h3, .es-policy-card .col-lg-2 .card-header .h3 {
    font-size: 24px;
  }
  .es-policy-card .col-lg-2 .card-header h2, .es-policy-card .col-lg-2 .card-header .h2 {
    font-size: 11px !important;
  }
  .es-policy-card .col-lg-2 .card-header i {
    font-size: 18px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  .es-policy-card .col-lg-2 {
    width: 20%;
  }
  .es-policy-card .col-lg-2 .card-header h3, .es-policy-card .col-lg-2 .card-header .h3 {
    font-size: 22px;
  }
  .es-policy-card .col-lg-2 .card-header h2, .es-policy-card .col-lg-2 .card-header .h2 {
    font-size: 10px !important;
  }
  .es-policy-card .col-lg-2 .card-header i {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1441px) and (max-width: 1680px) {
  .es-policy-card .col-lg-2 {
    width: 18%;
  }
  .es-policy-card .col-lg-2 .card-header h3, .es-policy-card .col-lg-2 .card-header .h3 {
    font-size: 24px;
  }
  .es-policy-card .col-lg-2 .card-header h2, .es-policy-card .col-lg-2 .card-header .h2 {
    font-size: 13px !important;
  }
  .es-policy-card .col-lg-2 .card-header i {
    font-size: 20px;
  }
}

body {
  overflow-x: hidden;
}
body .select2-container--default .select2-selection--single {
  border: 1px solid #ced4da;
  font-size: 12px;
  height: auto;
  padding: 0.4px 0;
  border-radius: 2px !important;
  background-color: #fff !important;
}
body .es-card-header-cta {
  padding: 5px 10px;
  border-radius: 2px;
}

.row:empty {
  display: none !important;
}

.es-head-info .es-select {
  margin-bottom: 0;
}
.es-head-info .es-payroll-ticket .evt-ticket {
  color: #495057;
}
.es-head-info .es-payroll-ticket .es-ticket-dropdown .nav-link {
  color: #1c7ed6;
}
.es-head-info .es-payroll-ticket .es-ticket-dropdown .dropdown-menu {
  border-radius: 2px;
  background: #fff;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.08);
  border-color: #e9e9e9;
  padding: 5px;
}
.es-head-info .es-payroll-ticket .es-ticket-dropdown .dropdown-menu li a {
  font-size: 13px;
}
.es-head-info .es-payroll-ticket .es-ticket-dropdown .dropdown-menu li a i {
  color: #868e96;
  margin-left: 5px;
}
.es-head-info .es-head-item {
  font-size: 12px;
  vertical-align: middle;
  line-height: normal;
}
.es-head-info .es-head-item .c3_label,
.es-head-info .es-head-item .evt-c3-label {
  background-color: #f8f9fa;
  border: 1px solid #ced4da;
  text-transform: capitalize;
  border-radius: 2px;
  line-height: normal;
  padding: 1px 4px 1px;
  margin-left: 0px;
  position: relative;
  font-size: 10px;
}
.es-head-info .es-head-item span#client {
  vertical-align: middle;
  display: inline-block;
  line-height: 24px;
}
.es-head-info span:not(.select2 span) {
  font-size: 11px;
  font-weight: 300;
}
.es-head-info strong,
.es-head-info .ri-refresh-line {
  margin-right: 5px;
  vertical-align: middle;
  line-height: 20px;
}

.select-hidden-th .form-group {
  margin-bottom: 0;
}
.select-hidden-th label:empty {
  display: none;
}

.view-remark {
  color: #000;
  font-weight: normal;
  font-size: 13px;
}

:focus-visible {
  outline: none;
}

.es-email-setup .es-email-setup-table {
  border-color: rgb(222, 226, 230) !important;
}
.es-email-setup .es-email-setup-table tr td .es-email-section .form-group {
  padding: 2px 25px;
}
.es-email-setup .es-email-setup-table tr td .es-email-section .form-group > label {
  width: 28px;
}
.es-email-setup .es-email-setup-table tr td .es-email-section .form-group:last-child {
  border-bottom: 0px !important;
}
.es-email-setup .es-email-setup-table .email-body tr.collapse-row td {
  border: none !important;
}
.es-email-setup.line-selectbox .dropdown-toggle {
  border: 1px solid #dedede !important;
  padding: 5px 10px !important;
  border-radius: 2px;
}
.es-email-setup.line-selectbox .dropdown-toggle:focus {
  outline: none !important;
}
.es-email-setup .es-email-setup-head label {
  font-size: 13px;
}
.es-email-setup .es-email-setup-head p {
  font-size: 13px;
  margin-bottom: 0;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.es-email-setup .es-email-setup-head p b {
  font-weight: 600;
  margin-left: 5px;
}
.es-email-setup .es-email-setup-head i {
  color: #666666;
}
.es-email-setup table tr:hover {
  background-color: #fff !important;
}
.es-email-setup table tr:hover td {
  box-shadow: none !important;
}
.es-email-setup #pagination-container {
  text-align: right;
  margin-top: 21px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.es-email-setup #pagination-container button {
  border: none;
  background-color: transparent;
}
.es-email-setup #pagination-container span {
  text-decoration: none;
  color: #fc8e25;
  background-color: #fff;
  border: 1px solid #fc8e25;
  display: inline-block;
  border-radius: 2px;
  padding: 0.375rem 0.75rem;
}
.es-email-setup #pagination-container #page-num-container {
  display: inline-block;
}

.es-email-setup-table,
.es-send-email-modal {
  overflow: auto;
}
.es-email-setup-table table,
.es-send-email-modal table {
  width: 100%;
  border: 1px solid #f1f3f5;
  border-radius: 2px;
  border-spacing: 0;
  min-width: 1180px;
}
.es-email-setup-table th,
.es-send-email-modal th {
  text-transform: capitalize;
  padding: 10px 8px !important;
  line-height: normal;
  font-weight: 600;
}
.es-email-setup-table th:last-child,
.es-send-email-modal th:last-child {
  width: 3.5%;
}
.es-email-setup-table td,
.es-send-email-modal td {
  padding: 10px 8px !important;
  line-height: normal;
}
.es-email-setup-table tr button.toggle-button,
.es-send-email-modal tr button.toggle-button {
  background: transparent;
  border: none;
  transform: rotate(0deg);
  transition: all 0.2s ease;
}
.es-email-setup-table tr button.toggle-button.collapsed,
.es-send-email-modal tr button.toggle-button.collapsed {
  transform: rotate(-90deg);
}
.es-email-setup-table tr button.toggle-button i,
.es-send-email-modal tr button.toggle-button i {
  font-size: 14px;
  color: #000;
  font-weight: 600;
}
.es-email-setup-table tr.collapse-row,
.es-send-email-modal tr.collapse-row {
  background-color: transparent;
}
.es-email-setup-table tr.collapse-row td,
.es-send-email-modal tr.collapse-row td {
  font-size: 11px;
  padding: 0 !important;
  line-height: normal;
  color: #343a40;
}
.es-email-setup-table .es-email-section > .form-group,
.es-send-email-modal .es-email-section > .form-group {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eeeeee;
  margin: 0;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 400;
}
.es-email-setup-table .es-email-section > .form-group .email-input,
.es-send-email-modal .es-email-section > .form-group .email-input {
  flex: 1;
}
.es-email-setup-table .es-email-section > .form-group .email-input .select2,
.es-send-email-modal .es-email-section > .form-group .email-input .select2 {
  width: 100% !important;
}
.es-email-setup-table .es-email-section > .form-group .email-input .select2 .select2-selection,
.es-send-email-modal .es-email-section > .form-group .email-input .select2 .select2-selection {
  display: flex;
  align-items: center;
  width: 100%;
  border: none !important;
}
.es-email-setup-table .es-email-section > .form-group .email-input .select2 .select2-selection .select2-selection__rendered,
.es-send-email-modal .es-email-section > .form-group .email-input .select2 .select2-selection .select2-selection__rendered {
  margin: 0;
  flex-wrap: wrap;
  display: flex;
}
.es-email-setup-table .es-email-section > .form-group .email-input .select2 .select2-selection .select2-selection__rendered li,
.es-send-email-modal .es-email-section > .form-group .email-input .select2 .select2-selection .select2-selection__rendered li {
  font-size: 11px;
  padding: 6px 15px 6px 6px;
  border: 1px solid #dee2e6;
  border-radius: 2px;
  background-color: #fff;
  margin-right: 5px;
  display: flex;
  align-items: center;
  position: relative;
}
.es-email-setup-table .es-email-section > .form-group .email-input .select2 .select2-selection .select2-selection__rendered li .select2-selection__choice__remove,
.es-send-email-modal .es-email-section > .form-group .email-input .select2 .select2-selection .select2-selection__rendered li .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  padding: 0;
  position: absolute;
  right: 6px;
  left: auto;
  font-size: 14px;
  top: 3px;
  font-weight: 400;
}
.es-email-setup-table .es-email-section > .form-group .email-input .select2 .select2-selection .select2-search__field,
.es-send-email-modal .es-email-section > .form-group .email-input .select2 .select2-selection .select2-search__field {
  background-color: transparent;
}
.es-email-setup-table .es-email-section > .form-group .email-input .evt-from-mail,
.es-send-email-modal .es-email-section > .form-group .email-input .evt-from-mail {
  font-size: 11px;
  padding: 6px 15px 6px 6px;
  border: 1px solid #dee2e6;
  border-radius: 2px;
  background-color: #fff;
  margin-left: 5px;
}
.es-email-setup-table .es-email-section > .form-group > label,
.es-send-email-modal .es-email-section > .form-group > label {
  font-weight: 600;
  display: block;
}
.es-email-setup-table .es-email-section .from-mec-financial,
.es-send-email-modal .es-email-section .from-mec-financial {
  display: flex;
  border-bottom: 1px solid #eeeeee;
  margin: 0;
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 400;
  color: #666666;
}
.es-email-setup-table .es-email-section .from-mec-financial b,
.es-send-email-modal .es-email-section .from-mec-financial b {
  font-weight: 600;
}
.es-email-setup-table .es-email-section .from-mec-financial .yellow-text,
.es-send-email-modal .es-email-section .from-mec-financial .yellow-text {
  background-color: #fff9db;
  color: #666666;
  font-size: 11px;
  padding: 3px 6px;
  line-height: normal;
}
.es-email-setup-table .es-email-section .from-mec-financial p.note,
.es-send-email-modal .es-email-section .from-mec-financial p.note {
  font-size: 11px;
  color: #666666;
}
.es-email-setup-table .es-email-section .action-btns,
.es-send-email-modal .es-email-section .action-btns {
  display: flex;
  margin: 0;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 400;
  color: #666666;
  justify-content: flex-end;
}
.es-email-setup-table .es-email-section .action-btns .cancel-btn,
.es-send-email-modal .es-email-section .action-btns .cancel-btn {
  font-weight: 400;
  color: #666666;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.es-email-setup-table .es-email-section .action-btns .save-btn,
.es-send-email-modal .es-email-section .action-btns .save-btn {
  font-weight: 400;
  color: #fff;
  background-color: transparent;
  border: 1px solid #f7813d;
  background-color: #f7813d;
  padding: 5px 10px;
  border-radius: 2px;
  cursor: pointer;
}
.es-email-setup-table .es-email-section .tagator_element .tagator_element.options-visible,
.es-send-email-modal .es-email-section .tagator_element .tagator_element.options-visible {
  max-width: 100%;
  border-color: #e3e3e3;
  border-radius: 2px;
}
.es-email-setup-table .es-email-section .tagator_element.options-hidden,
.es-send-email-modal .es-email-section .tagator_element.options-hidden {
  border-color: transparent;
}
.es-email-setup-table .es-email-section .tagator_element .tagator_options:empty,
.es-send-email-modal .es-email-section .tagator_element .tagator_options:empty {
  display: none !important;
}
.es-email-setup-table .es-email-section .tagator_element .tagator_options li,
.es-send-email-modal .es-email-section .tagator_element .tagator_options li {
  font-size: 13px;
  color: #666;
  line-height: normal;
  text-transform: capitalize;
  background-color: #fff;
}
.es-email-setup-table .tagator_options,
.es-send-email-modal .tagator_options {
  left: 0px;
  border-color: #f1f3f5;
}
.es-email-setup-table ~ .pagination span,
.es-send-email-modal ~ .pagination span {
  font-size: 13px;
  display: inline-block;
  white-space: nowrap;
}
.es-email-setup-table ~ .pagination span b,
.es-send-email-modal ~ .pagination span b {
  font-weight: 600;
}
.es-email-setup-table ~ .pagination button.dropdown-toggle,
.es-send-email-modal ~ .pagination button.dropdown-toggle {
  min-width: 43px;
  height: 24px;
  padding: 3px 6px !important;
}
.es-email-setup-table ~ .pagination button.dropdown-toggle .filter-option-inner-inner,
.es-send-email-modal ~ .pagination button.dropdown-toggle .filter-option-inner-inner {
  line-height: normal;
}
.es-email-setup-table ~ .pagination button.dropdown-toggle::after,
.es-send-email-modal ~ .pagination button.dropdown-toggle::after {
  margin-bottom: 1.5px;
}
.es-email-setup-table ~ .pagination .dropdown-menu.show,
.es-send-email-modal ~ .pagination .dropdown-menu.show {
  max-height: 150px !important;
  max-width: 55px !important;
  min-width: 55px !important;
}
.es-email-setup-table ~ .pagination .dropdown-menu.show .inner::-webkit-scrollbar,
.es-send-email-modal ~ .pagination .dropdown-menu.show .inner::-webkit-scrollbar {
  width: 4px;
}
.es-email-setup-table ~ .pagination .dropdown-menu.show .inner::-webkit-scrollbar-track,
.es-send-email-modal ~ .pagination .dropdown-menu.show .inner::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.es-email-setup-table ~ .pagination .dropdown-menu.show .inner::-webkit-scrollbar-thumb,
.es-send-email-modal ~ .pagination .dropdown-menu.show .inner::-webkit-scrollbar-thumb {
  background: #888;
}

.email-to span,
.email-bcc span,
.email-cc span {
  font-size: 11px;
  padding: 5px 8px;
  color: #666666;
  border: 1px solid #dee2e6;
  border-radius: 2px;
  background-color: #fff;
  cursor: pointer;
}

.email-to span.more-count,
.email-bcc span.more-count,
.email-cc span.more-count {
  font-size: 10px;
  padding: 5px 8px 5px 0;
  color: #f7813d;
  border: none;
  border-radius: 0;
  background-color: transparent;
  cursor: pointer;
  white-space: nowrap;
  text-transform: capitalize;
}

.es-email-setup-table .es-email-section .tagator_element .tagator_options li:hover,
.es-email-setup-table .es-email-section .tagator_element .tagator_options li.active {
  background-color: #f5f5f5 !important;
  color: #666;
}

.select2-results__option--selected {
  background-color: #f1f3f5;
}

span.select2-results {
  max-height: 210px;
  overflow-y: auto;
}

.display-none {
  display: none !important;
}

.es-collapse-table {
  width: 100%;
}
.es-collapse-table thead tr th {
  font-weight: 500;
  line-height: normal;
  padding: 0 15px;
  background-color: #f1f3f5;
}
.es-collapse-table thead tr th.expand-table-head {
  padding: 0 !important;
  padding-right: 0 !important;
}
.es-collapse-table thead tr th table {
  width: 100%;
}
.es-collapse-table thead tr th table tr th {
  padding: 11px 15px;
}
.es-collapse-table thead tr th table tr th.d-none {
  font-size: 0;
  width: 0 !important;
  min-width: 0 !important;
  padding: 0 !important;
  transition: all 0.3s ease-out;
  display: table-cell !important;
}
.es-collapse-table tfoot {
  display: none;
}
.es-collapse-table tbody tr {
  border-left: 1px solid #e9ecef;
  border-right: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}
.es-collapse-table tbody tr:last-child {
  border-bottom: none;
}
.es-collapse-table tbody tr td a {
  font-weight: 400;
}
.es-collapse-table tbody tr td .d-none {
  font-size: 0;
  width: 0 !important;
  min-width: 0 !important;
  padding: 0 !important;
  transition: all 0.3s ease-out;
  display: table-cell !important;
}
.es-collapse-table tbody tr td table {
  width: 100%;
}
.es-collapse-table tbody tr td table tbody tr {
  border: none;
}
.es-collapse-table tbody tr td table tbody tr td {
  border-bottom: 0;
}
.es-collapse-table > tbody > tr > td {
  border-bottom: 1px solid #f1feea;
}
.es-collapse-table button.expand {
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.es-collapse-table.open-th .d-none {
  display: table-cell !important;
  font-size: inherit;
  width: 130px !important;
  min-width: 130px !important;
  padding: 8px 10px !important;
  transition: all 0.3s ease-out;
  white-space: normal;
}
.es-collapse-table.open-th .expand i:before {
  content: "\f325";
}
.es-collapse-table.open-th .expand-table-head td {
  background: #f9f9f9;
}
.es-collapse-table.open-th .expand-table-head th:not(:last-child) {
  background: #f1f3f5;
}
.es-collapse-table.open-th th.expand-table-head {
  border: 2px solid #c5c5c5;
  border-bottom: 0;
}
.es-collapse-table.open-th td.expand-table-head {
  border-left: 2px solid #c5c5c5;
  border-top: 0;
  border-right: 2px solid #c5c5c5;
}
.es-collapse-table th.expand-table-head th,
.es-collapse-table td.expand-table-head td {
  min-width: 130px;
  width: 130px;
  transition: all 0.3s ease-out;
}
.es-collapse-table th.es-green {
  background: #c6eccd;
}
.es-collapse-table th.es-yellow {
  background: #fdefbd;
}
.es-collapse-table td {
  padding: 6px 15px;
}
.es-collapse-table td.es-light-green {
  background-color: #fafefa;
}
.es-collapse-table td.es-light-yellow {
  background: rgba(253, 239, 189, 0.1);
}
.es-collapse-table td.expand-table-head {
  padding: 0;
  background-color: #f9f9f9;
}
.es-collapse-table td.expand-table-head table tr td {
  padding: 5px 15px;
}
.es-collapse-table tfoot {
  background-color: #e9edf1;
}
.es-collapse-table tfoot tr td {
  padding: 8px;
}

.expand-all {
  border: none;
  background-color: transparent;
  padding: 0;
  margin-top: -4px;
  font-weight: bold;
  min-width: 105px;
  text-align: right;
}
@media only screen and (max-width: 1400px) {
  .expand-all {
    font-size: 11px;
  }
}

.modal form .es-select .select2 {
  width: 100% !important;
}
.modal form .es-select .select2 .select2-selection {
  border-color: #ced4da;
  min-height: 30px;
  border-radius: 2px;
}
.modal form .es-select .select2 .select2-selection .select2-selection__arrow {
  background-image: url(/img/arrow-down-s-line.png) !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 17px;
  padding-right: 25px;
  height: 30px;
}
.modal form .es-select .select2 .select2-selection .select2-selection__arrow b {
  opacity: 0;
}
.modal form .select2-container {
  width: calc(100% - 40px);
}
.modal form .select2-container .select2-dropdown {
  width: 50% !important;
}
.modal .es-log-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.modal .es-log-list ul li {
  display: flex;
  border-bottom: 1px solid #dee2e6;
  padding: 15px 0;
}
.modal .es-log-list ul li:first-child {
  padding-top: 0;
}
.modal .es-log-list ul li > i {
  background-color: #f1f3f5;
  height: 28px;
  width: 28px;
  text-align: center;
  line-height: 28px;
  font-size: 18px;
  color: #868e96;
  border-radius: 50px;
  margin-right: 12px;
}
.modal .es-log-list ul li .es-log-detail {
  flex: 1;
}
.modal .es-log-list ul li .es-log-detail p {
  margin-bottom: 0;
  font-size: 13px;
  color: #212529;
}
.modal .es-log-list ul li .es-log-detail span {
  color: #666666;
  font-size: 12px;
  margin-right: 10px;
}
.modal .es-log-list ul li .es-log-detail span strong {
  color: #212529;
}
.modal.es-notification-modal .modal-header,
.modal.es-notification-modal .modal-footer {
  display: none;
}
.modal.es-notification-modal .modal-dialog {
  display: flex;
  align-items: center;
  min-height: calc(100% - 3.5rem);
}
.modal.es-notification-modal .modal-body {
  margin: 0 !important;
}
.modal.es-notification-modal .evt-notification-body {
  padding: 20px;
}
.modal.es-notification-modal .evt-notification-body i {
  font-size: 44px;
  color: #f59090;
}
.modal.es-notification-modal .evt-notification-body p {
  font-size: 14px;
  color: #666666;
}
.modal.es-notification-modal .evt-notification-body a {
  color: #fc8e25;
  font-weight: 400;
  border-bottom: 1px solid;
  padding-bottom: 1px;
}

.es-user-navbar {
  background-color: transparent !important;
  box-shadow: none !important;
  padding-left: 3px;
}
.es-user-navbar ul li a {
  padding: 7px 0.75rem !important;
  border: 1px solid transparent;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  display: block;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.es-user-navbar ul li a.active {
  font-weight: 600;
  color: #F7813D !important;
  background: #fff;
  border-color: rgba(0, 0, 0, 0.125) rgba(0, 0, 0, 0.125) transparent;
}

.es-common-modal .modal-dialog {
  max-width: 1012px;
}
.es-common-modal .modal-content {
  border-radius: 2px;
  border: 0;
  font-family: "Inter", sans-serif;
}
.es-common-modal .modal-header {
  border: 0;
}
.es-common-modal .modal-header h5, .es-common-modal .modal-header .h5 {
  color: #212529;
  font-size: 20px;
  font-weight: 400;
}
.es-common-modal .modal-header h5 span, .es-common-modal .modal-header .h5 span {
  font-size: 14px;
}
.es-common-modal .modal-body {
  padding: 0 20px 20px;
}
.es-common-modal .btn-close {
  background-size: 10px;
  margin-right: 0;
  font-size: 10px !important;
}

.es-modal-table {
  border-radius: 2px;
  background: #fff;
  border-collapse: separate;
  border-spacing: 0;
  white-space: normal !important;
}
.es-modal-table tr td {
  min-height: 52px;
  border-top: 1px solid #dee2e6;
  border-right: 0;
  width: auto !important;
}
.es-modal-table tr td:first-child {
  border-left: 1px solid #dee2e6;
}
.es-modal-table tr td .form-group label {
  display: block !important;
}
.es-modal-table tr td .form-group textarea.form-control {
  min-height: 70px;
  font-size: 13px;
}
.es-modal-table tr:last-child td {
  border-bottom: 1px solid #dee2e6;
}
.es-modal-table tr:last-child td:first-child {
  border-bottom-left-radius: 8px;
}
.es-modal-table tr:last-child td:last-child {
  border-bottom-right-radius: 8px;
}
.es-modal-table tr:first-child td:first-child {
  border-top-left-radius: 8px;
}
.es-modal-table tr:first-child td:last-child {
  border-top-right-radius: 8px;
}
.es-modal-table .es-radio-buttons {
  width: 35% !important;
  text-align: right;
}
.es-modal-table .es-radio-buttons label {
  display: inline-block !important;
  position: relative;
  padding-left: 20px;
  cursor: pointer;
  color: #212529;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  line-height: normal;
}
.es-modal-table .es-radio-buttons input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.es-modal-table .es-radio-buttons input:checked ~ .checkmark:after {
  display: block;
}
.es-modal-table .es-radio-buttons .checkmark {
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  border-radius: 20px;
  border: 1px solid #ced4da;
  background: #fff;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  margin-right: 3px;
}
.es-modal-table .es-radio-buttons .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  background-color: #fc8e25;
  border-radius: 20px;
  transform: translateY(-50%);
  right: 0;
  margin: auto;
}
.es-modal-table .es-checkboxes label {
  display: inline-block !important;
  position: relative;
  padding-left: 27px;
  cursor: pointer;
  color: #212529;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight: 500;
  line-height: 20px;
}
.es-modal-table .es-checkboxes input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.es-modal-table .es-checkboxes input:checked ~ .checkmark:after {
  display: block;
}
.es-modal-table .es-checkboxes .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border-radius: 2px;
  border: 1px solid #dee2e6;
  background: #fff;
}
.es-modal-table .es-checkboxes .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid #212529;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.es-modal-table .radio-spacing {
  font-size: 12px;
}
.es-modal-table .es-status-box {
  padding: 8px;
  border-radius: 2px;
  border: 1px solid #edecec;
  background: #fff;
  display: inline-block;
  min-width: 165px;
}
.es-modal-table .es-status-box .status {
  border-radius: 2px;
  font-size: 14px;
  height: 24px;
  display: inline-block;
  padding: 2px 8px;
}
.es-modal-table .es-status-box .status.approve {
  background: #ebfbee;
  color: #40c057;
}
.es-modal-table .es-status-box .status.disapprove {
  background: #fff4e6;
  color: #fc8e25;
}
.es-modal-table .es-status-box .status.draft {
  background: #cccccc;
  color: #333;
}
.es-modal-table .es-status-box .status-title {
  color: #868e96;
  font-size: 14px;
  font-family: "lucida_calligraphyitalic";
  margin: 10px 0;
}
.es-modal-table .es-status-box p {
  color: #495057;
  font-size: 12px;
  font-weight: 300;
  margin: 0;
}

.es-remark-wrap {
  max-height: 460px;
  overflow-y: auto;
}
.es-remark-wrap .es-remark-item {
  margin-top: 6px;
  margin-bottom: 25px;
}
@media only screen and (max-width: 1024px) {
  .es-remark-wrap .es-remark-item {
    margin-bottom: 12px;
  }
}
.es-remark-wrap .es-remark-item h4, .es-remark-wrap .es-remark-item .h4 {
  font-size: 14px;
  color: #495057;
  margin-bottom: 0;
  font-weight: 600;
  display: inline-block;
}
.es-remark-wrap .es-remark-item h4 i, .es-remark-wrap .es-remark-item .h4 i {
  margin-right: 5px;
}
.es-remark-wrap .es-remark-item .remark-status {
  font-size: 14px;
  display: inline-block;
  padding: 3px 10px;
  border-radius: 2px;
}
.es-remark-wrap .es-remark-item h6, .es-remark-wrap .es-remark-item .h6 {
  font-size: 12px;
  font-weight: 300;
  color: #495057;
  margin-top: 6px;
  padding-left: 22px;
}
.es-remark-wrap .es-remark-item p {
  margin-bottom: 0;
  display: inline-block;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  background: #f8f9fa;
  padding: 6px 10px;
  margin-left: 22px;
}

.payroll-email .email-signature,
.payroll-email .evt-signature {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  border-top: 1px solid #eee;
  padding-top: 15px;
}
.payroll-email .email-signature span,
.payroll-email .evt-signature span {
  margin-right: 15px;
}
.payroll-email .email-signature span.signature_info,
.payroll-email .evt-signature span.signature_info {
  border-left: 2px solid #443c3c;
  padding-left: 15px;
  color: #000;
  font-size: 10px;
  font-weight: 500;
}
.payroll-email .email-signature img,
.payroll-email .evt-signature img {
  width: 100px;
}
.payroll-email.es-send-email-modal {
  margin-top: -20px;
}
.payroll-email.es-send-email-modal .es-email-section > .form-group {
  padding-left: 0;
  padding-right: 0;
}
.payroll-email.es-send-email-modal .es-email-section > .form-group > label {
  width: 80px;
}
.payroll-email.es-send-email-modal .es-email-section button.note-btn.dropdown-toggle::after {
  content: none;
}

.escalon-evt-filterarea {
  padding-right: 12px !important;
}
@media only screen and (max-width: 767px) {
  .escalon-evt-filterarea {
    padding: 0 !important;
  }
}

.evt-form-checklist table.es-modal-table tr:hover {
  background-color: transparent !important;
}
.evt-form-checklist table.es-modal-table tr:hover td {
  box-shadow: none !important;
}
.evt-form-checklist table.es-modal-table tr td {
  border-color: #dee2e6 !important;
}
.evt-form-checklist table.es-modal-table tr td .form-group label {
  margin-bottom: 5px;
}
.evt-form-checklist table.es-modal-table tr:not(:first-child) td {
  border-top: 0;
}
.evt-form-checklist table.es-modal-table tr.es-last-row:not(:last-child) td {
  border-bottom: 0 !important;
}

#evt-checklist .modal-content {
  border: none !important;
}

.es-pre-modal {
  font-size: 13px !important;
}

.btn-close {
  font-size: 10px !important;
}

.sidebar-link,
a.sidebar-link {
  background-color: #212529 !important;
  padding-bottom: 0px;
}

.sidebar-nav {
  margin-top: 12px !important;
}

body span.select2-dropdown.increasezindex,
body span.select2-dropdown.email-setup-dropdown {
  z-index: 99999;
}

.form-select optgroup {
  margin: 10px 5px;
}

.es-add-vendor .form-group {
  margin-bottom: 0px !important;
}

.datepicker input {
  border-radius: 3px;
}

.es-add-vendor .es-card-header-cta {
  margin-top: 21.5px;
}

.es-activity {
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: relative;
  display: table;
  width: 100%;
}

.es-activity:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 5px;
  width: 4px;
  background: #FEF2EC;
  left: 128px;
  margin-left: -2.5px;
}

.es-activity > li {
  position: relative;
  min-height: 50px;
  padding: 5px 0;
  width: 100%;
  display: block;
}

.es-activity .activity_time {
  position: absolute;
  left: 2px;
  width: 102px;
  text-align: right;
  top: 13px;
}
.es-activity .activity_time .date,
.es-activity .activity_time .time {
  display: block;
  font-weight: 600;
  line-height: 16px;
  font-size: 12px;
}
.es-activity .activity_icon {
  left: 122px;
  position: absolute;
  /*width:50px;*/
  text-align: center;
  top: 13px;
}
.es-activity .activity_body > div + div {
  margin-top: 0;
}
.es-activity .activity_header {
  border-bottom: 1px solid #ced4da;
  padding: 0;
  display: flex;
  align-items: center;
}
.es-activity .activity_header .topic {
  font-weight: 600;
}
.es-activity .activity_header .area {
  font-style: italic;
  color: #878a99;
}
.es-activity .activity_header .activity_info {
  padding: 1px 6px;
  border-radius: 0.25rem;
}
.es-activity .activity_header .activity_info .username {
  font-weight: normal;
}
.es-activity .activity_content {
  letter-spacing: 0.25px;
  line-height: 18px;
  font-size: 13px;
}
.es-activity .activity_content:empty {
  display: none;
  padding: 0;
  margin: 0;
}
.es-activity .activity_content span {
  /*background:#e8e8e8;*/
  padding: 1px 6px;
  border-radius: 0.25rem;
  display: flex;
  overflow-wrap: anywhere;
  min-height: 20px;
}
.es-activity .activity_content span.old {
  color: #666;
  background-color: #dedede;
  border-color: #f5c6cb;
}
.es-activity .activity_content span.new {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
.es-activity .activity_content table tbody tr td:first-child {
  padding-left: 0;
}
.es-activity .activity_content p {
  margin: 0;
}
.es-activity .activity_content:after, .es-activity .activity_content:before {
  content: "";
  display: table;
  clear: both;
}
.es-activity .activity_title {
  margin-top: 0;
}
.es-activity .activity_footer {
  /*border-top:1px solid $border;*/
  padding-top: 5px;
  display: flex;
  align-items: center;
  color: #999;
}
.es-activity .activity_footer .username span {
  font-weight: 500;
}
.es-activity .activity_info {
  display: flex;
}
.es-activity .activity_info > div:first-child {
  padding-left: 0;
}
.es-activity .activity_info > div:first-child:before {
  content: none;
}
.es-activity .activity_info > div {
  padding: 0 8px 0 10px;
  position: relative;
}
.es-activity .activity_info > div:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  top: 10px;
  left: 0;
  background: #666666;
}
.es-activity .activity_info > div:last-child {
  padding-right: 0;
}

.es-scrollable-div {
  overflow-y: auto;
}
.es-scrollable-div:hover::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.4);
  opacity: 0.41;
}

.es-scrollable-div::-webkit-scrollbar-track {
  background: #f5f5f5;
  margin-left: 5px;
}

.es-scrollable-div::-webkit-scrollbar {
  width: 7px;
  height: 0;
  margin-left: 5px;
}

.es-scrollable-div::-webkit-scrollbar-thumb {
  background: none;
  border-radius: 4.5px;
  -webkit-border-radius: 4.5px;
  -moz-border-radius: 4.5px;
}

.evt-activity-list-data {
  max-width: 100% !important;
  padding-right: 13px;
}

.es-scrollable-div::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.5);
}

.es-activity-filter label {
  display: none;
}
.es-activity-filter .form-group {
  margin-bottom: 0px;
}

.modal-single-column {
  width: 100% !important;
  max-width: 405px;
}

.es-basic-tab input[type=text] {
  flex: 1;
}
.es-basic-tab select {
  flex: 1;
}
.es-basic-tab .form-label {
  max-width: 200px;
  flex: 0 0 200px;
}
@media screen and (max-width: 767px) {
  .es-basic-tab .form-label {
    max-width: 135px;
    flex: 0 0 135px;
  }
}

.note-modal .note-modal-body {
  padding: 10px 20px;
}
.note-modal .note-modal-body .form-group {
  padding-bottom: 0 !important;
}
.note-modal .note-modal-body .form-group label {
  padding: 0;
  font-size: 13px;
  font-weight: 400;
}
.note-modal .note-modal-footer {
  margin-bottom: 15px;
}

.note-editor.note-frame.fullscreen {
  background-color: #fff;
}

.es-signature {
  font-family: "Style Script", cursive;
  font-size: 18px !important;
  padding: 2px 6px;
}

.es-signatory-detail {
  margin-left: 10px;
}

#verticle_progressbar {
  position: relative;
  left: 0px;
  padding: 0;
  top: 20px;
}
#verticle_progressbar > li {
  list-style-type: none;
  font-size: 8px;
  font-weight: 400;
  margin-bottom: 0;
  position: relative;
  min-height: 50px;
  padding: 0 0 0 45px;
}
#verticle_progressbar > li:before {
  width: 25px;
  height: 25px;
  font-size: 15px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  text-align: center;
  top: 0px;
  z-index: 2;
  left: 0;
  border: 2px solid #bababc;
}
#verticle_progressbar > li:after {
  content: "";
  width: 2px;
  height: 100%;
  background: #bdbdbd;
  position: absolute;
  left: 12px;
  top: 20px;
  z-index: 0;
}
#verticle_progressbar > li.active:after {
  background: #2babad;
}
#verticle_progressbar > li.active:before {
  background: #2babad;
  font-family: remixicon !important;
  content: "\eb7b";
  border: 2px solid #2babad;
}
#verticle_progressbar > li.es-inprogress:before {
  font-family: remixicon !important;
  content: "\eb7b";
  border: 2px solid #ffbf46;
}
#verticle_progressbar > li.invite::before {
  content: "";
  background: #fff;
}
#verticle_progressbar > li:last-child::after {
  height: 0;
}
#verticle_progressbar > li .next-button {
  font-size: 13px;
}
#verticle_progressbar .step0:before {
  content: "";
  color: #fff;
}

.es-verticle_progressbar-date {
  font-size: 11px;
  color: #aaa;
}

.es-compBoard-list {
  margin-left: 0px;
  padding-left: 0px;
  width: 100%;
  column-count: 3;
}
@media screen and (max-width: 640px) {
  .es-compBoard-list {
    column-count: 2;
  }
}
@media screen and (max-width: 480px) {
  .es-compBoard-list {
    column-count: 1;
  }
}
.es-compBoard-list li {
  margin-left: 0px !important;
  display: inline-block;
  font-size: 12px;
  position: relative;
  padding: 0 0 0 12px;
  margin: 2px 15px;
}
.es-compBoard-list li::before {
  position: absolute;
  content: "";
  background: gray;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  left: 0;
  top: 7px;
}

.es-company-signatory-icon {
  left: 215px;
  position: absolute;
  top: 237px;
}

.main .client-payroll-header .navbar {
  z-index: 1;
}

.es-multiselect-user {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 6px;
}
.es-multiselect-user input {
  width: 100%;
  border: 1px solid #ccc !important;
  border-radius: 3px;
  margin-bottom: 9px;
}
.es-multiselect-user .es-multiselect {
  border: 0px !important;
}

.es-multiselect-member {
  height: 323px !important;
  max-height: 400px !important;
}

.es-basic-tab .es-company-signatory-icon {
  position: static;
}

table.work-hour tbody tr td:hover {
  box-shadow: inset 0 0 0 0px rgb(243, 246, 249) !important;
}

.es-notification-icon {
  border-right: 1px solid #cccccc;
  padding-right: 15px;
  margin-right: 7px;
  position: relative;
}
.es-notification-icon .notification-img {
  width: 32px;
  height: 32px;
}
.es-notification-icon span.blue_dot {
  position: absolute;
  height: 4px;
  width: 4px;
  background-color: #0a58ca !important;
  border-radius: 50px;
  top: 13px;
  right: 19px;
  border: 0;
}
.es-notification-icon span {
  margin-left: 7px;
  background-color: #fc8e25 !important;
  top: -5px;
  right: -5px;
  width: 18px;
  height: 18px;
  font-size: 9px;
  text-align: center;
  padding: 0 !important;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.es-notification-icon .modal-body {
  padding: 0 !important;
}

@media screen and (max-width: 576px) {
  .logo {
    left: 55%;
    transform: translateX(-100%);
  }
}
@media screen and (max-width: 480px) {
  .logo {
    left: 60%;
  }
}
.groups-inputs input {
  width: 225px;
}
.groups-inputs textarea {
  width: 315px;
}

.es-multiSelect-roles .left-column,
.es-multiSelect-roles .right-column {
  width: 225px;
}
.es-multiSelect-roles .actions .btn {
  width: 95px;
  margin: 10px 0;
  padding: 3px 5px;
  display: block;
}
.es-multiSelect-roles .form-select[multiple],
.es-multiSelect-roles .form-select[size]:not([size="1"]) {
  padding-right: 0;
}

.clientSetupList .ri-close-circle-line {
  color: rgba(var(--bs-danger-rgb));
  font-size: 16px;
}

.evt-company-board-title-add,
.evt-company-board-title-added {
  font-size: 11px;
  margin: 0 0 5px;
}

.es-company-onboarding,
.evt-company-onboarding-resume {
  margin-top: 5px;
}

.es-onboardingList .not-allowed {
  opacity: 0.6;
}

.es-create-company-modal .modal-dialog + .select2-container {
  width: 100% !important;
  max-width: 383px;
}
.es-create-company-modal .modal-dialog + .select2-container .select2-dropdown {
  width: 100% !important;
  max-width: 100%;
}

.es-job-box-layout {
  align-items: center;
  display: flex;
}
.es-job-box-layout img {
  width: 80px;
}

label.required {
  position: relative;
}
label.required:after {
  content: "*";
  color: #dc3545;
}

.fs-12px {
  font-size: 12px !important;
}

input[type=number] {
  -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.es-client-active-status {
  color: #1cbb8c;
}

.es-client-inactive-status {
  color: #dc3545;
}

.es-client-suspended-status {
  color: #af2a37;
}

.es-strong {
  font-weight: bold;
}

.daterangepicker .calendar-table td.active,
.daterangepicker .calendar-table td.active:hover {
  background-color: #ee8e25 !important;
  color: #fff !important;
}
.daterangepicker .calendar-table td.in-range {
  background-color: #faf1e6;
}
.daterangepicker .drp-buttons .applyBtn.btn-primary {
  background-color: #ee8e25 !important;
  border-color: transparent;
  box-shadow: none !important;
}

/*------------------------------------------ Activity ---------------------------------*/
.evt-activity li {
  position: relative;
}

.es-activity {
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: relative;
  display: table;
  width: 100%;
}
.es-activity > li {
  position: relative;
  min-height: 50px;
  padding: 5px 0;
  width: 100%;
  display: block;
}
.es-activity .activity_icon a {
  text-decoration: none;
  width: 11px;
  height: 11px;
  display: inline-block;
  border-radius: 50px;
  background: #F7813D;
  line-height: 10px;
  color: #ffffff;
  font-size: 14px;
  border: 3px solid #F7813D;
  transition: border-color 0.2s linear;
  cursor: default;
}
.es-activity .activity_body {
  margin-left: 145px;
  position: relative;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.es-activity .activity_body:hover:before {
  border-right-color: #f0f0f0;
}
.es-activity .activity_body > div + div {
  margin-top: 0;
}
.es-activity .activity_header {
  border-bottom: 1px solid #ced4da;
  padding: 0;
  display: flex;
  align-items: baseline;
}
.es-activity .activity_header .topic {
  font-weight: 600;
  max-width: 400px;
}
.es-activity .activity_header .area {
  font-style: italic;
  color: #878a99;
}
.es-activity .activity_header .activity_info {
  padding: 1px 6px;
  border-radius: 0.25rem;
}
.es-activity .activity_header .activity_info .username {
  font-weight: normal;
}
.es-activity .activity_content {
  letter-spacing: 0.25px;
  line-height: 18px;
  font-size: 13px;
}
.es-activity .activity_content:empty {
  display: none;
  padding: 0;
  margin: 0;
}
.es-activity .activity_content span {
  padding: 1px 6px;
  border-radius: 0.25rem;
  display: flex;
  overflow-wrap: anywhere;
  min-height: 20px;
  width: fit-content;
  max-width: 300px;
  overflow-x: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  white-space: pre;
}
.es-activity .activity_content span.old {
  color: #666;
  background-color: #dedede;
  border-color: #f5c6cb;
}
.es-activity .activity_content span.new {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
.es-activity .activity_content table tbody tr td:first-child {
  padding-left: 0;
}
.es-activity .activity_content p {
  margin: 0;
}
.es-activity .activity_title {
  margin-top: 0;
}
.es-activity .activity_footer {
  padding-top: 5px;
  display: flex;
  align-items: center;
  color: #999;
}
.es-activity .activity_footer .username span {
  font-weight: 500;
}
.es-activity .activity_info {
  display: flex;
}
.es-activity .activity_info > div {
  padding: 0 8px 0 10px;
  position: relative;
}
.es-activity .activity_info > div:first-child {
  padding-left: 0;
}
.es-activity .activity_info > div:first-child:before {
  content: none;
}
.es-activity .activity_info > div:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  top: 10px;
  left: 0;
  background: #666666;
}
.es-activity .activity_info > div:last-child {
  padding-right: 0;
}

.es-activity .activity_time .date,
.es-activity .activity_time .time {
  display: block;
  font-weight: 400;
  line-height: 16px;
  font-size: 13px;
  color: #212529;
  margin-bottom: 3px;
}

.es-activity .activity_time .date + .date {
  color: #868E96;
  justify-content: end;
}

.es-activity .activity_content:after,
.es-activity .activity_content:before {
  content: "";
  display: table;
  clear: both;
}

.es-scrollable-div {
  overflow-y: auto;
}

.evt-add-note-form {
  align-items: unset;
  padding-left: 11px;
}

.es-add-note {
  margin-left: 0;
  margin-right: 2px;
}

.es-flex-start-center {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.evt-input-activity-note {
  max-width: 155px;
  min-width: 155px;
}

.evt-cancel-activity-note,
.evt-save-activity-note {
  font-size: 0.75rem;
  line-height: 21px;
}

.es-disable {
  opacity: 0.5;
  cursor: not-allowed;
}

.activity-note-action {
  flex-direction: column;
}
.activity-note-action a.btn.es-btn-primary {
  margin-bottom: 7px;
}

.es-btn-cancel {
  border: 1px solid #DEE2E6;
  background-color: #ffffff;
  color: #495057;
}
.es-btn-cancel:hover {
  border: 1px solid #ced4da;
  background-color: #DEE2E6;
  color: #495057;
}

.es-btn-save {
  background: #f7813d !important;
  border: 1px solid #f7813d !important;
  color: #fff !important;
}
.es-btn-save:hover, .es-btn-save:active {
  background: #dc6d2c !important;
  border: 1px solid #dc6d2c !important;
  color: #fff !important;
}

.select2.select2-container--disabled .select2-selection {
  background-color: #e9ecef !important;
}

.tag-service-link {
  color: #1971C2 !important;
}

.tag-user-link {
  color: #F7813D !important;
}

.tag-role-link {
  color: #0CA678 !important;
  cursor: default;
}

.es-notes-tab .es-note-input .form-group textarea {
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #E9ECEF;
  background: #FFF;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.08);
  height: 88px;
}
.es-notes-tab .es-note-input .tagify {
  border: none !important;
}
.es-notes-tab .es-note-input .tagify span.tagify__input {
  border-radius: 8px;
  border: 1px solid #E9ECEF;
  background: #FFF;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.08);
  overflow-y: auto;
}
.es-notes-tab .es-note-input .tagify .tagify__tag .tagify__tag__removeBtn {
  display: none;
}
.es-notes-tab .es-note-input .tagify .tagify__tag div {
  padding: 0 !important;
}
.es-notes-tab .es-note-input .tagify .tagify__tag div::before {
  content: none !important;
}
.es-notes-tab .es-note-input .tagify .tagify__tag .tagify__tag-text {
  color: #1971C2 !important;
}
.es-notes-tab .notes-tags li span {
  display: inline-flex;
  height: 16px;
  width: 16px;
  border-radius: 4px;
  font-size: 11px;
  align-items: center;
  justify-content: center;
}
.es-notes-tab .notes-tags li span.tag-user {
  background: #FDE6D8;
  color: #F7813D;
}
.es-notes-tab .notes-tags li span.tag-service {
  background: #E8F1F9;
  color: #1971C2;
}
.es-notes-tab .notes-tags li span.tag-role {
  background: #CEEDE4;
  color: #0CA678;
}
.es-notes-tab .es-note-timeline ul.es-activity li {
  padding-bottom: 35px;
}
.es-notes-tab .es-note-timeline ul.es-activity li .es-timeline-content .activity_content a.tag-service-link {
  cursor: default;
}
.es-notes-tab .es-note-timeline .activity_body {
  white-space: normal !important;
}
.es-notes-tab .es-note-timeline .activity_body .note-timeline-avatar {
  height: 48px;
  width: 48px;
  border-radius: 50px;
  overflow: hidden;
  flex: 0 0 48px;
  max-width: 48px;
}
.es-notes-tab .es-note-timeline .activity_body .note-timeline-avatar img {
  height: 100%;
  width: 100%;
}
.es-notes-tab .es-note-timeline .activity_body .es-timeline-content {
  padding-left: 15px;
}

.es-btn-default {
  background: #495057;
  border: 1px solid #424649;
  color: #fff;
}
.es-btn-default:hover {
  background: #6d7071;
  border: 1px solid #6d7071;
  color: #fff;
}

.es-flex-end-center {
  display: flex;
  justify-content: end;
  align-items: center;
}

.es-notes-textarea {
  height: 200px;
}

.tagify--mix .tagify__input {
  height: 88px !important;
}

/*************************Client List***********************/
.es-client-datatable .table-responsive {
  white-space: nowrap;
}
.es-client-datatable table {
  border: none !important;
}
.es-client-datatable table.table thead tr th {
  background-color: #F8F9FA;
  color: #495057 !important;
  font-weight: 500;
  border-bottom-color: #DEE2E6 !important;
}
.es-client-datatable table tbody tr td {
  color: #343A40 !important;
  font-size: 12px;
  box-shadow: none !important;
  position: relative;
}
.es-client-datatable table tbody tr td small, .es-client-datatable table tbody tr td .small {
  display: block;
  color: #868E96;
}
.es-client-datatable table tbody tr td i {
  color: #868E96;
  font-size: 13px;
  cursor: pointer;
}
.es-client-datatable table tbody tr td i.ri-file-copy-line {
  visibility: hidden;
}
.es-client-datatable table tbody tr td:hover .ri-file-copy-line {
  visibility: visible;
}
.es-client-datatable table tbody tr td .es-service-item {
  display: inline-block;
  border-radius: 32px;
  border: 1px solid #e9ecef;
  background: #f8f9fa;
  color: #495057;
  padding: 1.5px 10px;
  font-size: 12px;
  font-weight: 500;
}
.es-client-datatable table tbody tr td .es-service-item i {
  font-size: 11px;
  margin-left: 3px;
}
.es-client-datatable table tbody tr td .show-service-item {
  display: inline-block;
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
}
.es-client-datatable table tbody tr td .show-service-item::after {
  content: none;
}
.es-client-datatable table tbody tr td .es-services-dropdown {
  padding: 6px 10px;
  z-index: 9;
  border-radius: 2px;
  background: #FFF;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.1);
  border: none;
  max-height: 138px;
  overflow-y: auto;
  max-width: 160px;
  white-space: normal;
}
.es-client-datatable table tbody tr td .es-services-dropdown li {
  margin: 4px 0;
}
.es-client-datatable table tbody tr td .es-services-dropdown li span {
  font-size: 12px !important;
  color: #495057;
}
.es-client-datatable table tbody tr td .es-services-dropdown li span i {
  font-size: 12px;
}
.es-client-datatable table tbody tr:last-child td {
  border-bottom: 0 !important;
}
.es-client-datatable .dataTables_wrapper .dataTables_filter {
  text-align: left;
  margin-bottom: 15px;
}
.es-client-datatable .dataTables_wrapper .dataTables_filter label input {
  margin-left: 0;
  border-radius: 2px;
  color: #495057;
  background-image: url(/img/search-icon.svg);
  font-size: 11px;
  border: 1px solid #DEE2E6;
  background-repeat: no-repeat;
  background-position: 5px;
  padding-left: 25px;
  background-size: 13px;
  height: 26.8px;
}
.es-client-datatable .dataTables_wrapper .dataTables_filter label input:focus {
  box-shadow: none;
}
.es-client-datatable .dataTables_wrapper table {
  margin-bottom: 15px !important;
}
.es-client-datatable .dataTables_info {
  float: left;
  padding-top: 0 !important;
  font-size: 13px;
  margin-right: 0;
}
.es-client-datatable .dataTables_length {
  display: inline-block;
}
.es-client-datatable .dataTables_length label {
  font-size: 13px;
}
.es-client-datatable .dataTables_length select.form-select {
  border-radius: 2px;
  border-color: #DEE2E6;
  color: #868E96;
  font-size: 12px;
}
.es-client-datatable .dataTables_paginate {
  float: right;
  display: none;
}
.es-client-datatable .dataTables_paginate li.paginate_button.page-item.active .page-link {
  background: #F7813D;
  border-color: transparent;
  color: #fff;
}
.es-client-datatable .dataTables_paginate li.page-item {
  margin: 0 2px;
}
.es-client-datatable .dataTables_paginate li.page-item .page-link {
  background-color: #E9ECEF;
  color: #495057;
  font-size: 13px;
  border-radius: 2px;
}
.es-client-datatable .dataTables_paginate li.page-item .page-link :focus {
  box-shadow: none !important;
}

.es-filter-wrap {
  margin-bottom: -27px;
  margin-left: 186px;
}

.es-filter {
  border-right: 1px solid #DEE2E6;
  padding-right: 12px;
  margin-right: 10px;
}
.es-filter .btn-group {
  margin-left: 8px;
}
.es-filter .btn-group .dropdown-toggle {
  border-radius: 2px;
  border: 1px solid #DEE2E6;
  background: #FFF;
  color: #495057 !important;
  box-shadow: none !important;
  padding: 5px 60px 5px 6px;
  font-size: 12px;
  line-height: normal;
  position: relative;
}
.es-filter .btn-group .dropdown-toggle::after {
  position: absolute;
  right: 8px;
  top: 8px;
  border-color: #868E96;
}
.es-filter .btn-group span.select2 {
  width: 100% !important;
}
.es-filter .btn-group span.select2 span.select2-selection {
  border-color: #DEE2E6;
  border-radius: 2px;
  background-color: #fff !important;
  padding-right: 10px;
}
.es-filter .btn-group span.select2 span.select2-selection textarea.select2-search__field {
  font-size: 13px;
  color: #495057;
}
.es-filter .btn-group span.select2 span.select2-selection ul.select2-selection__rendered li.select2-selection__choice {
  border-radius: 2px;
  background-color: #f1f1f1;
  border: 1px solid #e3e3e3;
  padding-left: 0;
  font-size: 11px;
  color: #495057;
  padding-right: 10px;
  font-weight: 500;
  line-height: 16px;
}
.es-filter .btn-group span.select2 span.select2-selection ul.select2-selection__rendered li.select2-selection__choice button.select2-selection__choice__remove {
  border: none;
  right: 0;
  left: auto;
  background-color: transparent !important;
  line-height: 15px;
}
.es-filter .btn-group span.select2 span.select2-selection ul.select2-selection__rendered li.select2-selection__choice span {
  display: inline-block;
  max-width: 50px;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 8px;
}
.es-filter .btn-group span.select2 span.select2-selection button.select2-selection__clear {
  line-height: normal;
  margin: 3px 6px;
}
.es-filter .btn-group span.select2::after {
  content: "";
  height: 6px;
  width: 6px;
  border-style: solid;
  border-color: #868E96;
  border-width: 0px 1px 1px 0px;
  position: absolute;
  right: 10px;
  transform: rotate(45deg);
  top: 10px;
  z-index: 0;
}
.es-filter .btn-group span.select2-container ul.select2-results__options li.select2-results__option {
  font-size: 12px;
  color: #495057;
  padding: 0 0 0 23px;
  background-color: transparent !important;
  position: relative;
  margin: 8px 8px;
}
.es-filter .btn-group span.select2-container ul.select2-results__options li.select2-results__option::before {
  content: "";
  border-radius: 1px;
  border: 1px solid #DEE2E6;
  background: #FFF;
  position: absolute;
  left: 0;
  height: 16px;
  width: 16px;
}
.es-filter .btn-group span.select2-container ul.select2-results__options li.select2-results__option::after {
  content: "";
  height: 8px;
  width: 4px;
  border-style: solid;
  border-color: #000;
  border-width: 0px 2px 2px 0px;
  position: absolute;
  left: 6.5px;
  transform: rotate(45deg);
  top: 3px;
  opacity: 0;
}
.es-filter .btn-group span.select2-container ul.select2-results__options li.select2-results__option.select2-results__option--selected::after {
  opacity: 1;
}
.es-filter .btn-group span.select2-container .select2-dropdown {
  border-radius: 2px;
  background: #FFF;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.1);
  border: none;
}
.es-filter .btn-group:last-child .dropdown-menu {
  right: 0 !important;
  left: auto !important;
}
.es-filter .dropdown-menu {
  border-radius: 2px;
  background: #FFF;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.1);
  border: none;
  white-space: nowrap;
}
.es-filter .dropdown-menu li {
  font-size: 12px;
  color: #495057;
  padding: 4px 10px;
}
.es-filter .dropdown-menu li input[type=checkbox] {
  display: none;
}
.es-filter .dropdown-menu li label {
  display: block;
  position: relative;
  padding-left: 22px;
}
.es-filter .dropdown-menu li label::before {
  content: "";
  border-radius: 1px;
  border: 1px solid #DEE2E6;
  background: #FFF;
  position: absolute;
  left: 0;
  height: 16px;
  width: 16px;
}
.es-filter .dropdown-menu li label::after {
  content: "";
  height: 8px;
  width: 4px;
  border-style: solid;
  border-color: #000;
  border-width: 0px 2px 2px 0px;
  position: absolute;
  left: 6.5px;
  transform: rotate(45deg);
  top: 3px;
  opacity: 0;
}
.es-filter .dropdown-menu li input:checked + label::after {
  opacity: 1;
}
.es-filter .dropdown-menu hr {
  border-color: #DEE2E6;
  margin-bottom: 6px;
  background-color: transparent;
  margin-top: 7px;
}
.es-filter .dropdown-menu .clear-filter-item {
  color: #0A58CA;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  margin: 0 10px;
}
.es-filter .select2-container .select2-selection--multiple .select2-selection__clear {
  background-color: #fff;
  z-index: 99;
}

.es-reset {
  text-decoration: none;
  font-size: 13px;
  padding-right: 0;
  border: none;
}
.es-reset:hover {
  text-decoration: none !important;
}
.es-reset .icon {
  font-size: 16px !important;
  top: 0;
  right: 0px;
  color: #868E96;
  position: relative;
}
.es-reset .icon:hover {
  color: #F7813D;
}

.es-flex-between-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.es-head-action a {
  text-decoration: none;
  font-size: 20px;
  color: #868E96;
}

.es-filter .dropdown-menu li.search-field {
  padding: 0;
  margin-bottom: 8px;
  margin-top: -6px;
}

.es-filter .dropdown-menu li.search-field input {
  border-radius: 0;
  font-size: 12px;
  border-width: 0 0 1px 0;
  border-color: #DEE2E6;
}

.client_popup_wrap {
  min-width: 420px;
  max-width: 420px;
  background-color: #fff;
  padding: 15px 20px;
  border-radius: 6px;
  box-shadow: 0px 0px 20px 0px rgb(142, 142, 142);
  position: absolute;
  display: none;
  left: 500px;
  white-space: normal;
  transition: all 0.3s ease-out;
  z-index: 999;
  margin-top: -20px;
}
.client_popup_wrap::before {
  content: "";
  height: 10px;
  width: 10px;
  position: absolute;
  border-width: 10px 10px 10px 10px;
  border-style: solid;
  border-color: transparent white transparent transparent;
  left: -19px;
}
.client_popup_wrap p {
  margin-bottom: 0;
}
.client_popup_wrap .btn-close {
  position: absolute;
  right: 11px;
  top: 14px;
}
.client_popup_wrap .client_popup_header {
  border-bottom: 1px solid #ccc;
  margin: 0 -20px 15px;
  padding: 0 20px 5px;
}
.client_popup_wrap .client_popup_header h4, .client_popup_wrap .client_popup_header .h4 {
  font-size: 14px;
}

.profile-body-item span.es-acc-email {
  position: relative;
  padding-right: 15px;
}
.profile-body-item span.es-acc-email span {
  max-width: 130px;
  overflow: hidden;
  float: left;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 767px) {
  .profile-body-item span.es-acc-email span {
    max-width: 90%;
  }
}
.profile-body-item span.es-acc-email i {
  margin-right: 0 !important;
}

.es-email-text .evt-copy-to-clipboard,
.client-email-view .evt-copy-to-clipboard {
  cursor: pointer;
}

.es-files-tree {
  padding: 0;
  overflow-y: clip;
  overflow-x: auto;
}
.es-files-tree thead tr {
  /*th:nth-child(2) {
    width: 60%;
  }*/
}
.es-files-tree .documents-tab-content {
  position: relative;
  min-width: 1050px;
}
.es-files-tree .documents-tab-content i:hover {
  color: #F7813D;
}
.es-files-tree .documents-tab-content i.ri-close-circle-fill.icon:hover {
  color: #dc3545 !important;
}
.es-files-tree .documents-tab-content li.open {
  padding-bottom: 2px;
}
.es-files-tree .documents-tab-content li.open > ul {
  margin-top: 4px;
}
.es-files-tree .documents-tab-content li.open > ul li.file:not(:last-child) {
  margin-bottom: 4px;
}
.es-files-tree .type-heading {
  background-color: #F8F9FA;
  display: flex;
  align-items: center;
  position: relative;
  min-width: 1050px;
  font-weight: 500;
}
.es-files-tree .type-heading .folder-name {
  flex-grow: 1;
}
.es-files-tree .type-heading .info {
  text-align: left;
  flex-grow: 1;
}
.es-files-tree .type-heading .actions {
  width: 150px;
  text-align: center;
}
.es-files-tree .open ul .folder .info {
  max-width: calc(40% - 2px);
}
.es-files-tree li {
  padding: 0.45rem 0.75rem;
  list-style-type: none;
}
.es-files-tree li .component-value {
  width: 100%;
  display: inline-block;
  word-break: break-all;
  font-family: "Inter" !important;
}
.es-files-tree li .component-value a {
  word-break: break-all;
  font-size: 13px;
  font-family: "Inter";
}
.es-files-tree li .file-edit {
  width: auto;
  padding: 0 0 0 6px;
}
.es-files-tree li .component-name span.file-count {
  font-size: 11px;
  position: relative;
  line-height: normal;
}
.es-files-tree li .icon {
  position: relative;
  font-family: "remixicon" !important;
  font-size: 13px;
  padding: 1px 0 0 0;
  margin: 3px 4px 0 3px;
  cursor: pointer;
  opacity: 0;
  transition: all 0.15s ease;
  -webkit-transition: all 0.15s ease;
  line-height: normal;
}
.es-files-tree li .icon.edit:before {
  content: "\efe0";
}
.es-files-tree li .icon.update:before {
  content: "\eb7b";
}
.es-files-tree li .icon:hover {
  color: #F7813D;
}
.es-files-tree li .ri-close-line {
  font-size: 14px;
  padding: 2px 0px 0 10px;
  cursor: pointer;
  transition: all 0.15s ease;
  -webkit-transition: all 0.15s ease;
  opacity: 1;
}
.es-files-tree li .es-ri-delete:hover {
  color: #dc3545;
}
.es-files-tree li .folder {
  display: flex;
  align-items: center;
}
.es-files-tree li .folder .folder-name {
  font-weight: 400;
  flex-grow: 1;
  display: flex;
  align-items: center;
  position: relative;
  font-size: 13px;
}
.es-files-tree li .folder .folder-name div {
  padding-left: 20px;
  display: flex;
  align-items: center;
}
.es-files-tree li .folder .folder-name div span {
  cursor: pointer;
}
.es-files-tree li .folder .folder-name .icon {
  margin-top: 0;
  padding-left: 0;
}
.es-files-tree li .folder .folder-name div:before {
  height: 1em;
  padding: 0;
  font-size: 0.8em;
  display: block;
  position: absolute;
  left: 0;
  line-height: normal;
  font-family: "remixicon" !important;
  font-size: 1rem;
}
.es-files-tree li ul {
  display: none;
}
.es-files-tree li.open > ul {
  display: block;
  padding-left: 20px;
}
.es-files-tree li > .folder:not(:last-child) .folder-name div:before {
  content: "\ed6a";
  color: #868E96;
}
.es-files-tree li.open > .folder:not(:last-child) .folder-name div:before {
  content: "\ed52";
  color: #868E96;
}
.es-files-tree li p {
  margin: 0;
}
.es-files-tree li .created {
  flex-grow: 1;
  text-align: right;
  position: absolute;
  right: 350px;
  width: 190px;
}
.es-files-tree li .created p span {
  display: block;
}
.es-files-tree li .file-category {
  text-align: left;
  position: absolute;
  right: 510px;
}
.es-files-tree li .info {
  text-align: left;
  position: absolute;
  right: 100px;
}
.es-files-tree li .size {
  text-align: right;
  position: absolute;
  right: 20px;
  width: 70px;
}
.es-files-tree li .file-action {
  position: absolute;
  right: 0;
  text-align: center;
}
.es-files-tree li .file-action a:nth-child(2) {
  padding-left: 10px;
}
.es-files-tree li .file-action a:nth-child(2)::before {
  content: "|";
  color: #ced4da;
  position: relative;
  left: -7px;
}
.es-files-tree .file {
  display: flex;
  align-items: center;
  padding-bottom: 0;
  padding-top: 0 !important;
}
.es-files-tree .file .component-name .component-value {
  display: flex;
  align-items: center;
  margin-right: 5px;
}
.es-files-tree .file .icon {
  height: 15px;
}
.es-files-tree .file [class*=type-] {
  padding-left: 15px;
  position: relative;
  cursor: default;
  transition: all 0.15s ease;
  -webkit-transition: all 0.15s ease;
  margin-left: 10px;
}
.es-files-tree .file [class*=type-]:before {
  content: "";
  position: absolute;
  left: -10px;
  top: 0;
  height: 15px;
  width: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  font-size: 13px;
}
.es-files-tree .file .type-gif:before {
  content: "\ece4";
  font-family: "remixicon" !important;
  color: #868E96;
}
.es-files-tree .file .type-image:before {
  content: "\eceb";
  font-family: "remixicon" !important;
  color: #868E96;
}
.es-files-tree .file .type-pdf:before {
  content: "\ecfd";
  font-family: "remixicon" !important;
  color: #868E96;
}
.es-files-tree .file .type-doc:before {
  content: "\eceb";
  font-family: "remixicon" !important;
  color: #868E96;
}
.es-files-tree .file .type-ppt:before {
  content: "\ed01";
  font-family: "remixicon" !important;
  color: #868E96;
}
.es-files-tree .file .type-xls:before {
  content: "\ecdf";
  font-family: "remixicon" !important;
  color: #868E96;
}
.es-files-tree .file .file-name {
  flex-grow: 1;
  position: relative;
  display: flex;
  align-items: baseline;
}
.es-files-tree .file .file-name .component-value::before {
  font-size: 18px;
  width: 30px;
  flex: 0 0 30px;
  display: inline-block;
  color: #868E96;
  font-weight: normal;
  position: relative;
  top: 1px;
  font-family: "remixicon" !important;
}
.es-files-tree .file .file-name:before {
  height: 1em;
  padding: 0 0.1em;
  display: block;
  position: absolute;
  left: 0.25rem;
  top: 0;
  font-family: "remixicon" !important;
  font-size: 1rem;
}
.es-files-tree .component-check {
  margin-right: 5px;
}

.restore-icons {
  background-image: url(/img/restore-icon.png);
  min-width: 15px;
  min-height: 17px !important;
  width: 15px;
  height: 17px !important;
  background-size: 52px;
  background-repeat: no-repeat;
  background-position: -5px -4px;
  position: relative !important;
  top: 4px;
  transition: 0s !important;
}

.restore-icons:hover {
  background-position: -31px -4px;
  transition: 0s;
}

.es-files-holder .btn-toggle {
  position: relative;
  font-family: "remixicon" !important;
  cursor: pointer;
  transition: all 0.15s ease;
  -webkit-transition: all 0.15s ease;
}
.es-files-holder .btn-toggle:before {
  content: "\ea4e";
}
.es-files-holder .btn-toggle.open:before {
  content: "\ea78";
}

.evt-recycle-bin .es-files-tree .documents-tab-content li.file {
  padding-top: 8px !important;
}

.folder:hover .icon,
.file:hover .icon,
.folder:hover .upload-icon,
.file:hover .upload-icon,
.icon.update,
.file:hover .move-icon,
.folder:hover .es-ri-delete,
.file:hover .es-ri-delete {
  opacity: 1 !important;
}

.es-note-textarea {
  height: 30px;
  margin-bottom: 10px;
  border: 1px solid #dee2e6;
  width: 380px;
  border-radius: 2px;
  resize: none;
  padding-top: 4px;
  padding-left: 7px;
  margin-right: 0;
}
@media only screen and (max-width: 1400px) {
  .es-note-textarea {
    width: 320px;
  }
}

.es-notes-filter select {
  cursor: pointer;
}

.es-notes-close i {
  font-size: 19px;
  color: #666;
}

.es-notes-save i {
  font-size: 19px;
}

.es-notes-activity-head {
  margin-top: 42px !important;
  margin-left: 7px;
}

.evt-save-activity-note {
  cursor: pointer;
}

#autoresizing {
  display: block;
  overflow: hidden;
  resize: none;
  transition: all 0.3s ease-in-out;
}

.es-fiscal-year .form-group.es-select:last-child select {
  margin-top: 2px;
}

.modal-dialog {
  margin-left: auto;
  margin-right: auto;
}

.dir-info {
  margin: 13px 0;
}

.current-dir-info .file-name,
.current-dir-info .folder-name {
  display: inline-block;
  padding: 0 10px 0 0;
  margin: 0;
  border-radius: 6px;
  font-size: 13px;
  font-style: normal !important;
}
.current-dir-info .file-name i.ri-close-circle-fill.icon:hover,
.current-dir-info .folder-name i.ri-close-circle-fill.icon:hover {
  color: #dc3545 !important;
}
.current-dir-info .file-name i::before,
.current-dir-info .folder-name i::before {
  color: #868E96 !important;
}
.current-dir-info .file-name i::before:hover,
.current-dir-info .folder-name i::before:hover {
  color: #868E96 !important;
}
.current-dir-info .file-name span,
.current-dir-info .folder-name span {
  display: inline-block;
  position: relative;
}
.current-dir-info .file-name span i,
.current-dir-info .folder-name span i {
  font-style: normal;
  color: #495057;
  margin-right: 4px;
}
.current-dir-info .file-name span + span:before,
.current-dir-info .folder-name span + span:before {
  content: "\ea6e";
  font-family: remixicon !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

.current-folder {
  display: inline-block;
  background: #dee2e6;
  padding: 6px 10px;
  margin: 5px 0;
  border-radius: 6px;
}
.current-folder span {
  display: inline-block;
  position: relative;
}
.current-folder span + span:before {
  content: "\ea6e";
  font-family: remixicon !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

.es-files-holder .components-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  max-height: 200px;
  overflow-y: auto;
  width: 100%;
  background-color: #e9ecef;
}
.es-files-holder .components-list li {
  position: relative;
  padding: 5px 0;
}
.es-files-holder .components-list .component-name {
  position: relative;
  padding-left: 10px;
  cursor: pointer;
}
.es-files-holder .components-list .component-name:before {
  content: "\ed61";
  font-family: remixicon !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: -5px;
}
.es-files-holder .components-list .component-name:hover {
  background-color: #f8f9fa;
}
.es-files-holder .components-list .open-folder {
  transition: all 0.15s ease;
  font-size: 1.2rem;
  cursor: pointer;
  color: #3B7DDD;
  line-height: 0;
  position: relative;
  top: 1px;
  left: 0;
}
.es-files-holder .components-list .open-folder.open {
  top: 0;
}
.es-files-holder .components-list .open-folder.open:before {
  transform: rotate(90deg);
  content: "\ea77";
}
.es-files-holder .components-list ul {
  list-style: none;
  padding-left: 10px;
}
.es-files-holder .components-list ul li {
  padding-bottom: 0;
}

.es-datatable2 table.dataTable {
  border: none !important;
}
.es-datatable2 thead tr th {
  background: #F8F9FA;
  color: #495057 !important;
  border-bottom-width: 0 !important;
}
.es-datatable2 thead tr th:first-child, .es-datatable2 thead tr th:last-child {
  border-radius: 0 !important;
}
.es-datatable2 thead tr th.sorting:after, .es-datatable2 thead tr th.sorting:before {
  opacity: 0 !important;
}
.es-datatable2 tbody tr td {
  font-size: 0.8rem;
}
.es-datatable2 tbody tr td small, .es-datatable2 tbody tr td .small {
  color: #868E96;
  font-weight: 500;
}
.es-datatable2 .es-service-item {
  display: inline-block;
  border-radius: 32px;
  border: 1px solid #E9ECEF;
  background: #F8F9FA;
  color: #495057;
  padding: 2px 10px;
  margin: 2px;
  font-size: 12px;
  font-weight: 500;
}
.es-datatable2 .show-service-item {
  display: inline-block;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
}
.es-datatable2 .show-service-item::after {
  content: none;
}
.es-datatable2 .ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.es-datatable2 .row:last-child .dataTables_paginate {
  flex: 0;
}
.es-datatable2 .page-link {
  position: relative;
  display: block;
  height: 35px;
  width: 35px;
  text-align: center;
  padding: 0.5rem 0.75rem;
  margin-left: -1px !important;
  line-height: 1.25;
  color: #676767;
  background-color: #ffffff !important;
  border: 1px solid #dee2e6 !important;
  border-radius: 0 !important;
}
.es-datatable2 .page-item.active .page-link {
  background-color: #fc8e25 !important;
  color: #fff !important;
}

table thead tr th.sorting::before, table thead tr th.sorting::after {
  visibility: hidden;
  right: 5px !important;
}
table:hover thead tr th.sorting::before, table:hover thead tr th.sorting::after {
  visibility: visible;
}
table:hover thead tr th.sorting::before {
  opacity: 0.6;
}

.es-datatable2 .es-badge {
  border: 1px solid transparent;
  background: #eee;
  color: #343A40;
  display: inline-block;
  text-align: center;
  font-size: 90%;
  padding: 2px 5px;
  border-radius: 2px;
  background-color: transparent !important;
  font-weight: 500;
}
.es-datatable2 .es-badge.sm {
  width: 80px;
}
.es-datatable2 .es-badge.lg {
  width: 110px;
}
.es-datatable2 .es-badge.xl {
  width: 130px;
}
.es-datatable2 .es-badge.success {
  background: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}
.es-datatable2 .es-badge.danger {
  background: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}
.es-datatable2 .es-badge.warning {
  background: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}
.es-datatable2 .es-badge.info {
  background: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}
.es-datatable2 .dataTables_info {
  font-size: 13px;
  margin-right: 10px;
}
.es-datatable2 .table-filters {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-left: 26px;
}
.es-datatable2 .table-filters .dataTables_filter {
  margin-right: 0px;
}
.es-datatable2 .table-filters .dropdown-filters {
  display: flex;
  align-items: center;
}
.es-datatable2 .table-filters .dropdown-filters > * {
  margin: 0 5px;
}
.es-datatable2 .table-filters .dropdown-filters > *:first-child {
  margin-left: 0;
}
.es-datatable2 .table-filters .dropdown-filters > *:last-child {
  margin-right: 0;
}
.es-datatable2 .table-filters .es-reset:hover {
  background: #eee;
}

table.dataTable > tbody > tr > .selected {
  background-color: rgba(13, 110, 253, 0.9);
  color: white;
}

table.dataTable > tbody > tr > td.select-checkbox,
table.dataTable > tbody > tr > th.select-checkbox {
  position: relative;
}

table.dataTable > tbody > tr > td.select-checkbox:before,
table.dataTable > tbody > tr > td.select-checkbox:after,
table.dataTable > tbody > tr > th.select-checkbox:before,
table.dataTable > tbody > tr > th.select-checkbox:after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  box-sizing: border-box;
}

table.dataTable > tbody > tr > td.select-checkbox:before,
table.dataTable > tbody > tr > th.select-checkbox:before {
  content: " ";
  margin-top: -6px;
  margin-left: -6px;
  border: 1px solid black;
  border-radius: 3px;
}

table.dataTable > tbody > tr.selected > td.select-checkbox:before,
table.dataTable > tbody > tr.selected > th.select-checkbox:before {
  border: 1px solid white;
}

table.dataTable > tbody > tr.selected > td.select-checkbox:after,
table.dataTable > tbody > tr.selected > th.select-checkbox:after {
  content: "✓";
  font-size: 20px;
  margin-top: -12px;
  margin-left: -6px;
  text-align: center;
}

table.dataTable.compact > tbody > tr > td.select-checkbox:before,
table.dataTable.compact > tbody > tr > th.select-checkbox:before {
  margin-top: -12px;
}

table.dataTable.compact > tbody > tr.selected > td.select-checkbox:after,
table.dataTable.compact > tbody > tr.selected > th.select-checkbox:after {
  margin-top: -16px;
}

div.dataTables_wrapper span.select-info,
div.dataTables_wrapper span.select-item {
  margin-left: 0.5em;
}

html.dark table.dataTable > tbody > tr > td.select-checkbox:before,
html.dark table.dataTable > tbody > tr > th.select-checkbox:before,
html[data-bs-theme=dark] table.dataTable > tbody > tr > td.select-checkbox:before,
html[data-bs-theme=dark] table.dataTable > tbody > tr > th.select-checkbox:before {
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.common_modal.evt-file-download-modal .modal-dialog .modal-content .modal-body .es-logout-content p i {
  color: #495057;
}

@media screen and (max-width: 640px) {
  div.dataTables_wrapper span.select-info,
  div.dataTables_wrapper span.select-item {
    margin-left: 0;
    display: block;
  }
}
.es-file-error-list {
  overflow-y: auto;
  max-height: 150px;
  overflow-x: hidden;
}

.es-logs {
  margin-bottom: 0;
  border-left: 1px solid #ccc;
  padding-left: 20px;
  margin-left: 10px;
  list-style: none;
}
.es-logs .log-list {
  font-size: 12px;
  background-color: #f3f6f7;
  margin-bottom: 7px;
  padding: 5px !important;
  color: #334152;
  border-radius: 8px;
  position: relative;
  display: inline-block;
}
.es-logs .log-list::before {
  content: "";
  height: 8px;
  width: 8px;
  position: absolute;
  background-color: #8d8d8d;
  border-radius: 50px;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
}

.top-header {
  height: 72px;
  padding: 12px 32px;
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #fff;
}
.top-header .logo img {
  max-width: 96px;
  height: auto;
}
.top-header .es-project-name {
  background: #f1f3f5;
  color: #868e96;
  font-size: 12px;
  padding: 3px 4px 4px;
  font-weight: 500;
}
.top-header .es-dash-timer {
  display: flex;
  align-items: center;
  margin-left: 127px;
}
.top-header .es-dash-timer .running-clock-top {
  background: url(/img/running-clock.gif) no-repeat scroll 0 0/17px 17px rgba(0, 0, 0, 0);
  width: 14px;
  height: 14px;
  background-size: 100%;
  margin-right: 3px;
}
.top-header .es-dash-timer .es-tracker-description {
  height: auto;
  max-width: 380px;
  opacity: 1;
  visibility: visible;
  padding-left: 0px;
  display: block;
  width: auto;
}
.top-header .es-dash-timer button i {
  color: #fff;
}
.top-header .es-dash-timer .title {
  color: #343a40;
  font-size: 13px;
  font-weight: 500;
}
.top-header .es-dash-timer .subtitle {
  color: #343a40;
  font-size: 12px;
}
.top-header .es-dash-timer .subtitle span a {
  color: #343a40;
}
.top-header .es-dash-timer .subtitle i {
  color: #f7813d;
}
.top-header .es-dash-timer .duration {
  font-size: 13px;
  font-weight: 500;
  color: #495057;
  display: flex;
  align-items: center;
}
.top-header .es-dash-timer .duration i {
  color: #CED4DA;
  font-size: 16px;
  vertical-align: middle;
  margin-right: 2px;
  height: 17px;
  line-height: normal;
  position: relative;
  top: 0px;
  margin-left: -1px;
}
.top-header .es-dash-timer .play-btn,
.top-header .es-dash-timer .stop-btn {
  width: 53px;
  text-align: center;
  color: #fff;
  background-color: #f7813d;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  font-size: 12px;
  line-height: 2px;
}
.top-header .es-dash-timer .view-more {
  display: block;
  height: 20px;
  width: 20px;
  line-height: 18px;
  border: 1px solid #e8e8e8;
  color: #000000;
  text-decoration: none;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  text-align: center;
  font-size: 1.25rem;
}
.top-header .es-dash-timer .view-more:hover {
  background: #e8e8e8;
}
.top-header .es-dash-timer .view-more i::before {
  font-size: 20px;
  position: relative;
}
.top-header .es-dash-timer .view-more i.ri-arrow-drop-left-line::before {
  right: 1px;
}
.top-header .right-area > div {
  margin-right: 1em;
}
.top-header .right-area > div:last-child {
  margin-right: 0;
}
.top-header .topbar-user button span {
  border: 2px solid #dee2e7;
  border-radius: 50px;
  width: 100%;
  height: 100%;
}
.top-header .topbar-user button span img {
  height: 100%;
  width: 100%;
}
.top-header .app-search {
  width: 168px;
}
.top-header .app-search.es-search-opened {
  width: 668px;
  position: relative;
}
.top-header .app-search.es-search-opened label,
.top-header .app-search.es-search-opened input {
  width: 100%;
}
.top-header .app-search label {
  position: relative;
  color: #212529;
}
.top-header .app-search .form-control {
  border: 1px solid #dee2e6;
  height: 31px;
  padding-left: 30px;
  padding-right: 30px;
  background-color: #ffffff;
  color: #495057;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 3px;
  -webkit-border-radius: 2px;
  font-size: 13px;
}
.top-header .app-search .form-control::-webkit-search-cancel-button {
  display: none;
}
.top-header .app-search .form-control::placeholder {
  color: #495057;
}
.top-header .app-search .form-control:focus {
  border-color: #dee2e6;
}
.top-header .app-search .search-icon {
  position: absolute;
  z-index: 9;
  font-size: 14px;
  line-height: 32px;
  left: 10px;
  top: 1px;
  color: #868e96;
}
.top-header .app-search .close-icon {
  position: absolute;
  z-index: 9;
  font-size: 18px;
  line-height: 36px;
  right: 7px;
  top: -3px;
  color: #868e96;
}
.top-header .es-notification-panel {
  position: relative;
  cursor: pointer;
}
.top-header .es-notification-panel .notification-img {
  width: 32px;
  height: 32px;
}
.top-header .es-notification-panel > div {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  height: 36px;
  width: 36px;
  padding: 6px;
  background: #e9ecef;
}
.top-header .es-notification-panel > div img {
  max-width: 100%;
  height: auto;
}
.top-header .es-notification-panel > div .count {
  position: absolute;
  top: -8px;
  right: -8px;
  height: 22px;
  width: 22px;
  text-align: center;
  line-height: 22px;
  color: #fff;
  background: #f7813d;
  font-size: 12px;
  font-weight: 600;
  border-radius: 50%;
  -webkit-border-radius: 50%;
}
.top-header .topbar-user .dropdown-menu {
  margin-top: 33px !important;
}
.top-header .topbar-user button {
  width: 32px;
  height: 32px;
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
}
.top-header .topbar-user button img {
  max-width: 100%;
  height: auto;
}

.info-card-content .es-section-loader {
  margin-top: 15px;
  text-align: center;
}
.info-card-content .es-section-loader img {
  width: 48px;
  height: 20px;
  object-fit: cover;
  opacity: 0.7;
}
.info-card-content .es-section-loader .spinner-border {
  width: 1.5rem;
  height: 1.5rem;
  border-width: 0.2em;
}

.action-card-content .es-section-loader {
  margin-top: 15px;
  text-align: center;
}
.action-card-content .es-section-loader img {
  width: 48px;
  height: 20px;
  object-fit: cover;
  opacity: 0.7;
}
.action-card-content .es-section-loader .spinner-border {
  width: 1.5rem;
  height: 1.5rem;
  border-width: 0.2em;
}

.es-app-menu {
  background: #454545;
  height: 40px;
  position: sticky;
  top: 72px;
  z-index: 999;
}
.es-app-menu i:hover {
  color: #F7813D !important;
}
.es-app-menu .navbar {
  padding: 0 0 0 15px;
}
.es-app-menu .navbar .nav-item {
  padding: 13px 15px;
  margin-right: 10px;
}
.es-app-menu .navbar .nav-item:hover .nav-link, .es-app-menu .navbar .nav-item.active .nav-link {
  color: #F7813D;
}
.es-app-menu .navbar .nav-item:hover .es-mega-menu, .es-app-menu .navbar .nav-item.active .es-mega-menu {
  visibility: visible;
  opacity: 1;
  top: 40px;
}
.es-app-menu .navbar .nav-item .nav-link {
  color: #fff;
  padding: 0;
  line-height: 1;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}
.es-app-menu .navbar .nav-item:first-child .nav-link {
  padding-left: 0;
}
.es-app-menu .navbar .nav-item:last-child .nav-link {
  padding-right: 0;
}
.es-app-menu .navbar .nav-item.has-dropdown .nav-link:after {
  display: inline-block;
  margin-left: -3px;
  line-height: 16px;
  content: "\ea4f";
  font-family: remixicon !important;
  font-size: 20px;
  position: absolute;
  width: 17px;
}
.es-app-menu .navbar .nav-item.has-dropdown .nav-link[aria-expanded=true] {
  color: #F7813D;
}
.es-app-menu .navbar .nav-item.has-dropdown .nav-link[aria-expanded=true]:after {
  transform: rotateX(180deg);
  line-height: 12px;
}
.es-app-menu .navbar .es-mega-submenu-level-second {
  padding-left: 10px;
}
.es-app-menu .navbar .es-mega-submenu {
  background-color: #5e5e5e;
  padding-top: 10px;
  min-height: 124px;
}
.es-app-menu .navbar .es-mega-submenu .es-menu-list.active {
  display: block !important;
  margin-bottom: 0px !important;
}
.es-app-menu .navbar .es-mega-submenu .es-menu-list.active li {
  display: inline-block;
  border-bottom: none !important;
  margin-right: 20px !important;
}
.es-app-menu .right-actions {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0 20px 0 0;
  margin: 0;
}
.es-app-menu .right-actions li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}
.es-app-menu .right-actions li a:focus, .es-app-menu .right-actions li a:active {
  background-color: transparent !important;
}
.es-app-menu .right-actions li a i {
  color: #fff;
}
.es-app-menu .right-actions li a:hover {
  color: #F7813D;
}
.es-app-menu .right-actions li.active a i {
  color: #F7813D !important;
}
.es-app-menu .right-actions li a.action-dropdown {
  padding: 6px 10px 9px;
  border-radius: 2px;
}
.es-app-menu .right-actions li a.action-dropdown.show i {
  color: #F7813D !important;
}
.es-app-menu .right-actions li .action-dropdown.show[aria-expanded=true] {
  color: #F7813D !important;
}
.es-app-menu .right-actions li .dropdown-menu {
  background-color: #585858;
  border-radius: 0;
  right: 0;
  left: auto;
  padding: 0 15px;
  box-sizing: border-box;
  width: 380px;
  margin-top: 0;
  border: none;
}
@media only screen and (max-width: 599px) {
  .es-app-menu .right-actions li .dropdown-menu {
    width: 100%;
  }
}
.es-app-menu .right-actions li .dropdown-menu iframe {
  height: 365px;
}
@media only screen and (max-width: 599px) {
  .es-app-menu .right-actions li .dropdown-menu iframe {
    width: 96% !important;
  }
}
.es-app-menu .right-actions li .dropdown-menu h6, .es-app-menu .right-actions li .dropdown-menu .h6 {
  font-size: 16px;
  color: #fff;
  border-bottom: 1px solid #6a6a6a;
  font-weight: 400;
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
}
.es-app-menu .right-actions li .dropdown-menu h6 a, .es-app-menu .right-actions li .dropdown-menu .h6 a {
  font-size: 13px;
}
.es-app-menu .right-actions li .dropdown-menu h6 a i, .es-app-menu .right-actions li .dropdown-menu .h6 a i {
  font-size: 14px;
}
.es-app-menu .right-actions li .dropdown-menu ul {
  padding: 0;
  list-style: none;
  max-height: 280px;
  overflow-y: auto;
  margin: 15px 0;
  padding-right: 10px;
  scrollbar-color: #6a6a6a #f8f9fa;
  scrollbar-width: thin;
}
.es-app-menu .right-actions li .dropdown-menu ul::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px #6a6a6a;
  background-color: #f8f9fa;
  border-radius: 8px;
}
.es-app-menu .right-actions li .dropdown-menu ul::-webkit-scrollbar {
  width: 8px;
  border-radius: 8px;
  background-color: #f8f9fa;
}
.es-app-menu .right-actions li .dropdown-menu ul::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background-color: #6a6a6a;
}
.es-app-menu .right-actions li .dropdown-menu ul li {
  margin: 0 0 15px;
  display: flex;
  justify-content: space-between;
}
.es-app-menu .right-actions li .dropdown-menu ul li a.dropdown-item {
  font-size: 13px;
  color: #fff;
  padding: 0;
  white-space: normal;
}
.es-app-menu .right-actions li .dropdown-menu ul li a.dropdown-item:hover {
  color: #F7813D;
  background-color: transparent;
}
.es-app-menu .right-actions li .dropdown-menu ul li a.dropdown-item span {
  font-size: 11px;
  display: block;
}
.es-app-menu .right-actions li .dropdown-menu ul li i {
  color: #F7813D;
  font-size: 14px;
  height: 22px;
}
.es-app-menu nav.navbar {
  position: relative;
}
.es-app-menu nav.navbar .es-mega-menu {
  position: absolute;
  width: 100%;
  background-color: #585858;
  left: 0;
  top: 40px;
  transition: all 0.2s cubic-bezier(0.22, 0.61, 0.5, 0.65);
}
.es-app-menu nav.navbar .es-mega-menu .mega-menu-wrap {
  padding: 15px 0 15px 0px;
}
.es-app-menu nav.navbar .es-mega-menu .mega-menu-wrap ul.mega-menu-row {
  padding: 0;
  list-style: none;
}
.es-app-menu nav.navbar .es-mega-menu .mega-menu-wrap ul.mega-menu-row li {
  padding: 10px 15px 4px 17px;
  margin-right: 45px;
  vertical-align: top;
  line-height: 18px;
  width: 230px;
  max-width: 230px;
  min-width: 230px;
}
@media only screen and (max-width: 1470px) {
  .es-app-menu nav.navbar .es-mega-menu .mega-menu-wrap ul.mega-menu-row li {
    width: 200px;
    max-width: 200px;
    min-width: 200px;
  }
}
@media only screen and (max-width: 1170px) {
  .es-app-menu nav.navbar .es-mega-menu .mega-menu-wrap ul.mega-menu-row li {
    width: 160px;
    max-width: 160px;
    min-width: 160px;
  }
}
.es-app-menu nav.navbar .es-mega-menu .mega-menu-wrap ul.mega-menu-row li.es-click-menu {
  cursor: pointer;
}
.es-app-menu nav.navbar .es-mega-menu .mega-menu-wrap ul.mega-menu-row li.es-click-menu:hover > a {
  color: #F7813D;
}
@media only screen and (max-width: 1600px) {
  .es-app-menu nav.navbar .es-mega-menu .mega-menu-wrap ul.mega-menu-row li {
    margin-right: 30px;
  }
}
.es-app-menu nav.navbar .es-mega-menu .mega-menu-wrap ul.mega-menu-row li:last-child {
  margin-right: 0;
}
.es-app-menu nav.navbar .es-mega-menu .mega-menu-wrap ul.mega-menu-row li.active a {
  color: #F7813D;
}
.es-app-menu nav.navbar .es-mega-menu .mega-menu-wrap ul.mega-menu-row li a {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  display: block;
}
.es-app-menu nav.navbar .es-mega-menu .mega-menu-wrap ul.mega-menu-row li a:hover {
  color: #F7813D;
}
.es-app-menu nav.navbar .es-mega-menu .mega-menu-wrap ul.mega-menu-row li a i {
  color: #fff;
  font-size: 18px;
  vertical-align: middle;
}
.es-app-menu nav.navbar .es-mega-menu .mega-menu-wrap ul.mega-menu-row li p {
  color: #fff;
  margin-bottom: 0;
  margin-top: 1px;
  font-size: 10px;
  line-height: 15px;
}
.es-app-menu nav.navbar .es-mega-menu .mega-menu-wrap ul.mega-menu-row li.active-link {
  border-bottom: 1px solid #F7813D !important;
  background-color: #5e5e5e;
}
.es-app-menu nav.navbar .es-mega-menu .mega-menu-wrap ul.mega-menu-row li.active-link > a {
  color: #F7813D !important;
}
.es-app-menu nav.navbar .es-mega-menu .mega-menu-wrap ul.mega-menu-row:first-child {
  margin-bottom: 0px;
}
.es-app-menu nav.navbar .es-mega-menu .mega-menu-wrap ul.mega-menu-row:first-child li:hover {
  border-bottom-color: #F7813D;
}
.es-app-menu nav.navbar .es-mega-menu .mega-menu-wrap .es-mega-submenu .mega-menu-row li {
  line-height: 16px;
}
.es-app-menu nav.navbar .es-mega-menu .es-meet-wiki {
  height: 100%;
  border-left: 1px solid #6a6a6a;
  background: #5e5e5e;
  color: #fff;
  padding: 34px 15px;
}
.es-app-menu nav.navbar .es-mega-menu .es-meet-wiki span {
  margin-bottom: 15px;
  color: #fff;
  font-weight: 500;
}
.es-app-menu nav.navbar .es-mega-menu .es-meet-wiki p {
  color: #fff;
  margin-bottom: 0;
  margin-top: 4px;
  font-size: 10px;
  margin-bottom: 13px;
}
.es-app-menu nav.navbar .es-mega-menu .es-meet-wiki a {
  color: #F7813D;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  margin-left: 1px;
}
.es-app-menu nav.navbar .es-mega-menu .es-meet-wiki a i {
  font-size: 13px;
  color: #F7813D;
}

footer {
  padding: 5px 20px 5px 86px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #454545;
  padding: 0 1.375rem;
  height: 26px;
  position: sticky;
  z-index: 99;
  width: 100%;
  bottom: 0;
  line-height: normal;
  min-height: 26px;
}
footer i:hover {
  color: #F7813D !important;
}
footer .es-version span {
  color: #fff;
  font-size: 12px;
}
footer .es-version span a {
  color: #fff;
  font-size: 12px;
}
footer .es-version span a:hover {
  color: #F7813D;
}
footer .es-time-zone {
  text-align: center;
  color: #fff;
  width: auto;
  margin: auto;
  display: flex;
  align-items: center;
  padding: 0 15px;
}
footer .es-time-zone i {
  margin: 0;
  line-height: normal;
  display: inline-block;
  font-size: 20px;
}
footer .es-time-zone ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0 15px;
  display: flex;
}
footer .es-time-zone ul li {
  line-height: normal;
  margin: 1px 12px;
  display: flex;
  align-items: center;
}
footer .es-time-zone ul li span {
  font-style: normal;
  font-weight: 500;
  margin-right: 5px;
}
footer .es-time-zone ul li span.active {
  color: #F7813D;
}
footer .sidebar-footer {
  text-align: right;
  color: #fff;
  font-size: 12px;
  display: flex;
  gap: 8px;
}
footer .sidebar-footer button,
footer .sidebar-footer a.es-title-wiki {
  border: none;
  background-color: transparent;
}
footer .sidebar-footer button i,
footer .sidebar-footer a.es-title-wiki i {
  font-size: 16px;
  color: #fff;
  position: relative;
  top: 1px;
}

.crm-widget .spinner-border {
  width: 16px;
  height: 16px;
}
.crm-widget .es-summary-count-text {
  font-size: 11px;
  color: #919090;
  font-weight: 400;
  margin-bottom: 0px;
}
.crm-widget .row-cols-xxl-5 > * {
  width: 22% !important;
}
.crm-widget i {
  font-size: 15px;
  margin-left: 27px;
}

.es-tabs i:hover {
  color: #F7813D;
}
.es-tabs .nav-tabs,
.es-tabs .nav-link:focus,
.es-tabs .nav-link:hover {
  color: #F7813D !important;
}
.es-tabs .nav-tabs li,
.es-tabs .nav-link:focus li,
.es-tabs .nav-link:hover li {
  list-style: none;
  margin-right: 4px;
}
.es-tabs .nav-tabs li a.nav-link,
.es-tabs .nav-link:focus li a.nav-link,
.es-tabs .nav-link:hover li a.nav-link {
  border-width: 1px 1px 0px 1px !important;
  color: #495057;
  padding: 0.5rem 0.7rem !important;
  display: block;
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  text-decoration: none;
  font-size: 13px !important;
  margin-top: 10px;
  line-height: normal;
}
.es-tabs .nav-tabs li a.nav-link.active, .es-tabs .nav-tabs li a.nav-link:hover,
.es-tabs .nav-link:focus li a.nav-link.active,
.es-tabs .nav-link:focus li a.nav-link:hover,
.es-tabs .nav-link:hover li a.nav-link.active,
.es-tabs .nav-link:hover li a.nav-link:hover {
  border-width: 1px 1px 0 1px !important;
  background-color: #fff;
  border-color: #d5d7da !important;
  color: #F7813D;
  border-bottom-color: #d5d7da !important;
}
.es-tabs .es-document-link li.nav-item button.nav-link {
  border-width: 0px 0 2px 0 !important;
}
.es-tabs .es-document-link li.nav-item button.nav-link.active,
.es-tabs .es-document-link li.nav-item button.nav-link:hover {
  border-width: 0px 0 2px 0 !important;
  background-color: transparent;
  border-radius: 0 !important;
  border-color: #F7813D !important;
}

.main-content .es-sidebar,
.main-body .es-sidebar {
  height: calc(100% - 124px);
  width: 68px;
  position: fixed;
  top: 124px;
  left: 0px;
  background-color: #454545;
  padding-top: 20px;
  transition: all 0.3s ease-in-out;
  z-index: 99;
  padding-left: 6px;
  padding-right: 6px;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  z-index: 1;
}
.main-content .es-sidebar i:hover,
.main-body .es-sidebar i:hover {
  color: #F7813D !important;
}
.main-content .es-sidebar.open-es-sidebar,
.main-body .es-sidebar.open-es-sidebar {
  width: 316px;
  display: block;
}
.main-content .es-sidebar.open-es-sidebar .sidebar-heading,
.main-body .es-sidebar.open-es-sidebar .sidebar-heading {
  font-size: 20px;
  justify-content: space-between !important;
}
.main-content .es-sidebar.open-es-sidebar .sidebar-heading .es-toggle-btn i::before,
.main-body .es-sidebar.open-es-sidebar .sidebar-heading .es-toggle-btn i::before {
  content: "\eb99";
}
.main-content .es-sidebar.open-es-sidebar .es-time-zone,
.main-content .es-sidebar.open-es-sidebar .sidebar-footer,
.main-body .es-sidebar.open-es-sidebar .es-time-zone,
.main-body .es-sidebar.open-es-sidebar .sidebar-footer {
  display: none;
}
.main-content .es-sidebar.open-es-sidebar nav,
.main-body .es-sidebar.open-es-sidebar nav {
  display: block !important;
}
.main-content .es-sidebar .sidebar-heading,
.main-body .es-sidebar .sidebar-heading {
  font-size: 0;
  line-height: normal;
  padding: 0 0;
  margin-bottom: 15px;
  width: 100%;
  justify-content: left !important;
  margin-left: 4px;
}
.main-content .es-sidebar .sidebar-heading .es-toggle-btn,
.main-body .es-sidebar .sidebar-heading .es-toggle-btn {
  border: none;
  background-color: transparent;
  color: #fff;
  font-size: 18px;
  padding: 0;
}
@media only screen and (max-width: 1440px) {
  .main-content .es-sidebar .sidebar-heading,
  .main-body .es-sidebar .sidebar-heading {
    margin-bottom: 10px;
  }
}
.main-content .es-sidebar .sidebar-footer,
.main-body .es-sidebar .sidebar-footer {
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 10px;
  width: 100%;
}
.main-content .es-sidebar .sidebar-footer button,
.main-body .es-sidebar .sidebar-footer button {
  border: none;
  background-color: transparent;
  width: 30px;
  margin: auto;
}
.main-content .es-sidebar .sidebar-footer button img,
.main-body .es-sidebar .sidebar-footer button img {
  width: 18px;
}
.main-content .es-sidebar .sidebar-footer button i,
.main-body .es-sidebar .sidebar-footer button i {
  font-size: 18px;
  color: #fff;
}
.main-content .es-sidebar .sidebar-footer span,
.main-body .es-sidebar .sidebar-footer span {
  display: block;
  font-size: 11px;
}
.main-content .es-sidebar .sidebar-footer span a,
.main-body .es-sidebar .sidebar-footer span a {
  color: #fff;
  text-decoration: none;
}
.main-content .es-sidebar .sidebar-footer span a:hover,
.main-body .es-sidebar .sidebar-footer span a:hover {
  color: #3366cc;
}
.main-content .es-sidebar nav > ul.nav,
.main-body .es-sidebar nav > ul.nav {
  padding: 0 12px;
}
.main-content .es-sidebar nav > ul.nav > li.nav-item,
.main-body .es-sidebar nav > ul.nav > li.nav-item {
  border-bottom: 1px solid #535353;
}
.main-content .es-sidebar nav > ul.nav > li.nav-item:last-child,
.main-body .es-sidebar nav > ul.nav > li.nav-item:last-child {
  border-bottom: 0;
}
.main-content .es-sidebar nav > ul.nav > li.nav-item > a.nav-link,
.main-body .es-sidebar nav > ul.nav > li.nav-item > a.nav-link {
  font-size: 13px;
  color: #fff;
  position: relative;
  padding: 10px 10px 10px 14px;
}
.main-content .es-sidebar nav > ul.nav > li.nav-item > a.nav-link i,
.main-body .es-sidebar nav > ul.nav > li.nav-item > a.nav-link i {
  position: absolute;
  left: 0;
}
.main-content .es-sidebar nav > ul.nav > li.nav-item a.nav-link[aria-expanded=true],
.main-body .es-sidebar nav > ul.nav > li.nav-item a.nav-link[aria-expanded=true] {
  color: #F7813D;
}
.main-content .es-sidebar nav > ul.nav > li.nav-item a.nav-link[aria-expanded=true] i,
.main-body .es-sidebar nav > ul.nav > li.nav-item a.nav-link[aria-expanded=true] i {
  transform: rotate(90deg);
  color: #fff;
}
.main-content .es-sidebar nav > ul.nav > li.nav-item .collapse,
.main-content .es-sidebar nav > ul.nav > li.nav-item .collapsing,
.main-body .es-sidebar nav > ul.nav > li.nav-item .collapse,
.main-body .es-sidebar nav > ul.nav > li.nav-item .collapsing {
  margin-bottom: 12px;
}
.main-content .es-sidebar nav > ul.nav > li.nav-item .collapse ul.nav li.nav-item,
.main-content .es-sidebar nav > ul.nav > li.nav-item .collapsing ul.nav li.nav-item,
.main-body .es-sidebar nav > ul.nav > li.nav-item .collapse ul.nav li.nav-item,
.main-body .es-sidebar nav > ul.nav > li.nav-item .collapsing ul.nav li.nav-item {
  font-size: 13px;
  color: #fff;
  margin: 6px 15px;
}
.main-content .es-sidebar nav > ul.nav > li.nav-item .collapse ul.nav li.nav-item span,
.main-content .es-sidebar nav > ul.nav > li.nav-item .collapsing ul.nav li.nav-item span,
.main-body .es-sidebar nav > ul.nav > li.nav-item .collapse ul.nav li.nav-item span,
.main-body .es-sidebar nav > ul.nav > li.nav-item .collapsing ul.nav li.nav-item span {
  font-size: 11px;
}
.main-content .es-sidebar nav > ul.nav > li.nav-item .collapse ul.nav li.nav-item a.nav-link,
.main-content .es-sidebar nav > ul.nav > li.nav-item .collapsing ul.nav li.nav-item a.nav-link,
.main-body .es-sidebar nav > ul.nav > li.nav-item .collapse ul.nav li.nav-item a.nav-link,
.main-body .es-sidebar nav > ul.nav > li.nav-item .collapsing ul.nav li.nav-item a.nav-link {
  font-weight: 500;
  padding: 0;
  font-size: 13px;
  color: #fff;
}
.main-content .es-sidebar nav > ul.nav > li.nav-item.active,
.main-body .es-sidebar nav > ul.nav > li.nav-item.active {
  margin: 0 -18px;
  padding: 0 20px;
  background-color: #3f3f3f;
  border-bottom: 0;
}
.main-content .es-sidebar .es-time-zone,
.main-body .es-sidebar .es-time-zone {
  text-align: center;
  color: #fff;
  width: 56px;
  margin: auto;
}
.main-content .es-sidebar .es-time-zone i,
.main-body .es-sidebar .es-time-zone i {
  margin: 7px 0;
  display: inline-block;
  font-size: 18px;
}
.main-content .es-sidebar .es-time-zone ul,
.main-body .es-sidebar .es-time-zone ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-content .es-sidebar .es-time-zone ul li,
.main-body .es-sidebar .es-time-zone ul li {
  line-height: normal;
  margin: 22px 1px;
  font-size: 12px;
  text-align: left;
}
.main-content .es-sidebar .es-time-zone ul li label,
.main-body .es-sidebar .es-time-zone ul li label {
  font-style: normal;
  font-weight: 400;
  display: block;
  margin-bottom: 3px;
}
.main-content .es-sidebar .es-time-zone ul li span,
.main-body .es-sidebar .es-time-zone ul li span {
  font-style: normal;
  font-weight: 500;
  display: block;
}
.main-content .es-sidebar .es-time-zone ul li:last-child,
.main-body .es-sidebar .es-time-zone ul li:last-child {
  color: #F7813D;
}
@media only screen and (max-width: 1440px) {
  .main-content .es-sidebar,
  .main-body .es-sidebar {
    padding-top: 10px;
  }
}
.main-content .es-sidebar i,
.main-body .es-sidebar i {
  color: #fff;
}
.main-content .es-page-content,
.main-content .main-body,
.main-body .es-page-content,
.main-body .main-body {
  min-height: calc(100vh - 56px);
}
.main-content .es-page-content > .container-fluid > .row, .main-content .es-page-content > .container-sm > .row, .main-content .es-page-content > .container-md > .row, .main-content .es-page-content > .container-lg > .row, .main-content .es-page-content > .container-xl > .row,
.main-content .main-body > .container-fluid > .row,
.main-content .main-body > .container-sm > .row,
.main-content .main-body > .container-md > .row,
.main-content .main-body > .container-lg > .row,
.main-content .main-body > .container-xl > .row,
.main-body .es-page-content > .container-fluid > .row,
.main-body .es-page-content > .container-sm > .row,
.main-body .es-page-content > .container-md > .row,
.main-body .es-page-content > .container-lg > .row,
.main-body .es-page-content > .container-xl > .row,
.main-body .main-body > .container-fluid > .row,
.main-body .main-body > .container-sm > .row,
.main-body .main-body > .container-md > .row,
.main-body .main-body > .container-lg > .row,
.main-body .main-body > .container-xl > .row {
  background-color: #fff;
  padding-bottom: 20px;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card, .main-content .es-page-content > .container-sm > .row .es-profile-card, .main-content .es-page-content > .container-md > .row .es-profile-card, .main-content .es-page-content > .container-lg > .row .es-profile-card, .main-content .es-page-content > .container-xl > .row .es-profile-card,
.main-content .main-body > .container-fluid > .row .es-profile-card,
.main-content .main-body > .container-sm > .row .es-profile-card,
.main-content .main-body > .container-md > .row .es-profile-card,
.main-content .main-body > .container-lg > .row .es-profile-card,
.main-content .main-body > .container-xl > .row .es-profile-card,
.main-body .es-page-content > .container-fluid > .row .es-profile-card,
.main-body .es-page-content > .container-sm > .row .es-profile-card,
.main-body .es-page-content > .container-md > .row .es-profile-card,
.main-body .es-page-content > .container-lg > .row .es-profile-card,
.main-body .es-page-content > .container-xl > .row .es-profile-card,
.main-body .main-body > .container-fluid > .row .es-profile-card,
.main-body .main-body > .container-sm > .row .es-profile-card,
.main-body .main-body > .container-md > .row .es-profile-card,
.main-body .main-body > .container-lg > .row .es-profile-card,
.main-body .main-body > .container-xl > .row .es-profile-card {
  background: #fff;
  padding: 0 15px;
  box-shadow: 0 3px 5px -1px rgba(56, 65, 74, 0.1);
  height: 100%;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info.ps-3, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info.ps-3, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-profile-info.ps-3, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info.ps-3, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info.ps-3,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info.ps-3,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info.ps-3,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .es-profile-info.ps-3,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info.ps-3,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info.ps-3,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info.ps-3,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info.ps-3,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-profile-info.ps-3,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info.ps-3,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info.ps-3,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info.ps-3,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info.ps-3,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .es-profile-info.ps-3,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info.ps-3,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info.ps-3 {
  padding-left: 12px !important;
  font-size: 11px;
}
@media only screen and (min-width: 1140px) and (max-width: 1480px) {
  .main-content .es-page-content > .container-fluid > .row .es-profile-card, .main-content .es-page-content > .container-sm > .row .es-profile-card, .main-content .es-page-content > .container-md > .row .es-profile-card, .main-content .es-page-content > .container-lg > .row .es-profile-card, .main-content .es-page-content > .container-xl > .row .es-profile-card,
  .main-content .main-body > .container-fluid > .row .es-profile-card,
  .main-content .main-body > .container-sm > .row .es-profile-card,
  .main-content .main-body > .container-md > .row .es-profile-card,
  .main-content .main-body > .container-lg > .row .es-profile-card,
  .main-content .main-body > .container-xl > .row .es-profile-card,
  .main-body .es-page-content > .container-fluid > .row .es-profile-card,
  .main-body .es-page-content > .container-sm > .row .es-profile-card,
  .main-body .es-page-content > .container-md > .row .es-profile-card,
  .main-body .es-page-content > .container-lg > .row .es-profile-card,
  .main-body .es-page-content > .container-xl > .row .es-profile-card,
  .main-body .main-body > .container-fluid > .row .es-profile-card,
  .main-body .main-body > .container-sm > .row .es-profile-card,
  .main-body .main-body > .container-md > .row .es-profile-card,
  .main-body .main-body > .container-lg > .row .es-profile-card,
  .main-body .main-body > .container-xl > .row .es-profile-card {
    padding: 0 8px;
  }
  .main-content .es-page-content > .container-fluid > .row .es-profile-card .es-profile-title, .main-content .es-page-content > .container-sm > .row .es-profile-card .es-profile-title, .main-content .es-page-content > .container-md > .row .es-profile-card .es-profile-title, .main-content .es-page-content > .container-lg > .row .es-profile-card .es-profile-title, .main-content .es-page-content > .container-xl > .row .es-profile-card .es-profile-title,
  .main-content .main-body > .container-fluid > .row .es-profile-card .es-profile-title,
  .main-content .main-body > .container-sm > .row .es-profile-card .es-profile-title,
  .main-content .main-body > .container-md > .row .es-profile-card .es-profile-title,
  .main-content .main-body > .container-lg > .row .es-profile-card .es-profile-title,
  .main-content .main-body > .container-xl > .row .es-profile-card .es-profile-title,
  .main-body .es-page-content > .container-fluid > .row .es-profile-card .es-profile-title,
  .main-body .es-page-content > .container-sm > .row .es-profile-card .es-profile-title,
  .main-body .es-page-content > .container-md > .row .es-profile-card .es-profile-title,
  .main-body .es-page-content > .container-lg > .row .es-profile-card .es-profile-title,
  .main-body .es-page-content > .container-xl > .row .es-profile-card .es-profile-title,
  .main-body .main-body > .container-fluid > .row .es-profile-card .es-profile-title,
  .main-body .main-body > .container-sm > .row .es-profile-card .es-profile-title,
  .main-body .main-body > .container-md > .row .es-profile-card .es-profile-title,
  .main-body .main-body > .container-lg > .row .es-profile-card .es-profile-title,
  .main-body .main-body > .container-xl > .row .es-profile-card .es-profile-title {
    margin-left: -8px !important;
    margin-right: -8px !important;
  }
  .main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info.ps-3, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info.ps-3, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-profile-info.ps-3, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info.ps-3, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info.ps-3,
  .main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info.ps-3,
  .main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info.ps-3,
  .main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .es-profile-info.ps-3,
  .main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info.ps-3,
  .main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info.ps-3,
  .main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info.ps-3,
  .main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info.ps-3,
  .main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-profile-info.ps-3,
  .main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info.ps-3,
  .main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info.ps-3,
  .main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info.ps-3,
  .main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info.ps-3,
  .main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .es-profile-info.ps-3,
  .main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info.ps-3,
  .main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info.ps-3 {
    padding-left: 8px !important;
  }
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card.es-user-profile-left .user-profile-head .es-company-avatar, .main-content .es-page-content > .container-sm > .row .es-profile-card.es-user-profile-left .user-profile-head .es-company-avatar, .main-content .es-page-content > .container-md > .row .es-profile-card.es-user-profile-left .user-profile-head .es-company-avatar, .main-content .es-page-content > .container-lg > .row .es-profile-card.es-user-profile-left .user-profile-head .es-company-avatar, .main-content .es-page-content > .container-xl > .row .es-profile-card.es-user-profile-left .user-profile-head .es-company-avatar,
.main-content .main-body > .container-fluid > .row .es-profile-card.es-user-profile-left .user-profile-head .es-company-avatar,
.main-content .main-body > .container-sm > .row .es-profile-card.es-user-profile-left .user-profile-head .es-company-avatar,
.main-content .main-body > .container-md > .row .es-profile-card.es-user-profile-left .user-profile-head .es-company-avatar,
.main-content .main-body > .container-lg > .row .es-profile-card.es-user-profile-left .user-profile-head .es-company-avatar,
.main-content .main-body > .container-xl > .row .es-profile-card.es-user-profile-left .user-profile-head .es-company-avatar,
.main-body .es-page-content > .container-fluid > .row .es-profile-card.es-user-profile-left .user-profile-head .es-company-avatar,
.main-body .es-page-content > .container-sm > .row .es-profile-card.es-user-profile-left .user-profile-head .es-company-avatar,
.main-body .es-page-content > .container-md > .row .es-profile-card.es-user-profile-left .user-profile-head .es-company-avatar,
.main-body .es-page-content > .container-lg > .row .es-profile-card.es-user-profile-left .user-profile-head .es-company-avatar,
.main-body .es-page-content > .container-xl > .row .es-profile-card.es-user-profile-left .user-profile-head .es-company-avatar,
.main-body .main-body > .container-fluid > .row .es-profile-card.es-user-profile-left .user-profile-head .es-company-avatar,
.main-body .main-body > .container-sm > .row .es-profile-card.es-user-profile-left .user-profile-head .es-company-avatar,
.main-body .main-body > .container-md > .row .es-profile-card.es-user-profile-left .user-profile-head .es-company-avatar,
.main-body .main-body > .container-lg > .row .es-profile-card.es-user-profile-left .user-profile-head .es-company-avatar,
.main-body .main-body > .container-xl > .row .es-profile-card.es-user-profile-left .user-profile-head .es-company-avatar {
  border-radius: 50px;
  height: 80px;
  overflow: hidden;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info p.evt-content-copy span, .main-content .es-page-content > .container-sm > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info p.evt-content-copy span, .main-content .es-page-content > .container-md > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info p.evt-content-copy span, .main-content .es-page-content > .container-lg > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info p.evt-content-copy span, .main-content .es-page-content > .container-xl > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info p.evt-content-copy span,
.main-content .main-body > .container-fluid > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info p.evt-content-copy span,
.main-content .main-body > .container-sm > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info p.evt-content-copy span,
.main-content .main-body > .container-md > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info p.evt-content-copy span,
.main-content .main-body > .container-lg > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info p.evt-content-copy span,
.main-content .main-body > .container-xl > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info p.evt-content-copy span,
.main-body .es-page-content > .container-fluid > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info p.evt-content-copy span,
.main-body .es-page-content > .container-sm > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info p.evt-content-copy span,
.main-body .es-page-content > .container-md > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info p.evt-content-copy span,
.main-body .es-page-content > .container-lg > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info p.evt-content-copy span,
.main-body .es-page-content > .container-xl > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info p.evt-content-copy span,
.main-body .main-body > .container-fluid > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info p.evt-content-copy span,
.main-body .main-body > .container-sm > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info p.evt-content-copy span,
.main-body .main-body > .container-md > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info p.evt-content-copy span,
.main-body .main-body > .container-lg > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info p.evt-content-copy span,
.main-body .main-body > .container-xl > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info p.evt-content-copy span {
  display: inline-block;
  max-width: 190px;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 1500px) {
  .main-content .es-page-content > .container-fluid > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info p.evt-content-copy span, .main-content .es-page-content > .container-sm > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info p.evt-content-copy span, .main-content .es-page-content > .container-md > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info p.evt-content-copy span, .main-content .es-page-content > .container-lg > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info p.evt-content-copy span, .main-content .es-page-content > .container-xl > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info p.evt-content-copy span,
  .main-content .main-body > .container-fluid > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info p.evt-content-copy span,
  .main-content .main-body > .container-sm > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info p.evt-content-copy span,
  .main-content .main-body > .container-md > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info p.evt-content-copy span,
  .main-content .main-body > .container-lg > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info p.evt-content-copy span,
  .main-content .main-body > .container-xl > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info p.evt-content-copy span,
  .main-body .es-page-content > .container-fluid > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info p.evt-content-copy span,
  .main-body .es-page-content > .container-sm > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info p.evt-content-copy span,
  .main-body .es-page-content > .container-md > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info p.evt-content-copy span,
  .main-body .es-page-content > .container-lg > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info p.evt-content-copy span,
  .main-body .es-page-content > .container-xl > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info p.evt-content-copy span,
  .main-body .main-body > .container-fluid > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info p.evt-content-copy span,
  .main-body .main-body > .container-sm > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info p.evt-content-copy span,
  .main-body .main-body > .container-md > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info p.evt-content-copy span,
  .main-body .main-body > .container-lg > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info p.evt-content-copy span,
  .main-body .main-body > .container-xl > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info p.evt-content-copy span {
    max-width: 130px;
  }
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info .user-status-mrg, .main-content .es-page-content > .container-sm > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info .user-status-mrg, .main-content .es-page-content > .container-md > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info .user-status-mrg, .main-content .es-page-content > .container-lg > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info .user-status-mrg, .main-content .es-page-content > .container-xl > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info .user-status-mrg,
.main-content .main-body > .container-fluid > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info .user-status-mrg,
.main-content .main-body > .container-sm > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info .user-status-mrg,
.main-content .main-body > .container-md > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info .user-status-mrg,
.main-content .main-body > .container-lg > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info .user-status-mrg,
.main-content .main-body > .container-xl > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info .user-status-mrg,
.main-body .es-page-content > .container-fluid > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info .user-status-mrg,
.main-body .es-page-content > .container-sm > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info .user-status-mrg,
.main-body .es-page-content > .container-md > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info .user-status-mrg,
.main-body .es-page-content > .container-lg > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info .user-status-mrg,
.main-body .es-page-content > .container-xl > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info .user-status-mrg,
.main-body .main-body > .container-fluid > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info .user-status-mrg,
.main-body .main-body > .container-sm > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info .user-status-mrg,
.main-body .main-body > .container-md > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info .user-status-mrg,
.main-body .main-body > .container-lg > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info .user-status-mrg,
.main-body .main-body > .container-xl > .row .es-profile-card.es-user-profile-left .user-profile-head .es-profile-info .user-status-mrg {
  margin-top: 0 !important;
}
@media only screen and (max-width: 767px) {
  .main-content .es-page-content > .container-fluid > .row .es-profile-card, .main-content .es-page-content > .container-sm > .row .es-profile-card, .main-content .es-page-content > .container-md > .row .es-profile-card, .main-content .es-page-content > .container-lg > .row .es-profile-card, .main-content .es-page-content > .container-xl > .row .es-profile-card,
  .main-content .main-body > .container-fluid > .row .es-profile-card,
  .main-content .main-body > .container-sm > .row .es-profile-card,
  .main-content .main-body > .container-md > .row .es-profile-card,
  .main-content .main-body > .container-lg > .row .es-profile-card,
  .main-content .main-body > .container-xl > .row .es-profile-card,
  .main-body .es-page-content > .container-fluid > .row .es-profile-card,
  .main-body .es-page-content > .container-sm > .row .es-profile-card,
  .main-body .es-page-content > .container-md > .row .es-profile-card,
  .main-body .es-page-content > .container-lg > .row .es-profile-card,
  .main-body .es-page-content > .container-xl > .row .es-profile-card,
  .main-body .main-body > .container-fluid > .row .es-profile-card,
  .main-body .main-body > .container-sm > .row .es-profile-card,
  .main-body .main-body > .container-md > .row .es-profile-card,
  .main-body .main-body > .container-lg > .row .es-profile-card,
  .main-body .main-body > .container-xl > .row .es-profile-card {
    margin-bottom: 15px;
    height: auto;
  }
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .es-badge, .main-content .es-page-content > .container-sm > .row .es-profile-card .es-badge, .main-content .es-page-content > .container-md > .row .es-profile-card .es-badge, .main-content .es-page-content > .container-lg > .row .es-profile-card .es-badge, .main-content .es-page-content > .container-xl > .row .es-profile-card .es-badge,
.main-content .main-body > .container-fluid > .row .es-profile-card .es-badge,
.main-content .main-body > .container-sm > .row .es-profile-card .es-badge,
.main-content .main-body > .container-md > .row .es-profile-card .es-badge,
.main-content .main-body > .container-lg > .row .es-profile-card .es-badge,
.main-content .main-body > .container-xl > .row .es-profile-card .es-badge,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .es-badge,
.main-body .es-page-content > .container-sm > .row .es-profile-card .es-badge,
.main-body .es-page-content > .container-md > .row .es-profile-card .es-badge,
.main-body .es-page-content > .container-lg > .row .es-profile-card .es-badge,
.main-body .es-page-content > .container-xl > .row .es-profile-card .es-badge,
.main-body .main-body > .container-fluid > .row .es-profile-card .es-badge,
.main-body .main-body > .container-sm > .row .es-profile-card .es-badge,
.main-body .main-body > .container-md > .row .es-profile-card .es-badge,
.main-body .main-body > .container-lg > .row .es-profile-card .es-badge,
.main-body .main-body > .container-xl > .row .es-profile-card .es-badge {
  padding: 4px 11px !important;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .es-profile-title, .main-content .es-page-content > .container-sm > .row .es-profile-card .es-profile-title, .main-content .es-page-content > .container-md > .row .es-profile-card .es-profile-title, .main-content .es-page-content > .container-lg > .row .es-profile-card .es-profile-title, .main-content .es-page-content > .container-xl > .row .es-profile-card .es-profile-title,
.main-content .main-body > .container-fluid > .row .es-profile-card .es-profile-title,
.main-content .main-body > .container-sm > .row .es-profile-card .es-profile-title,
.main-content .main-body > .container-md > .row .es-profile-card .es-profile-title,
.main-content .main-body > .container-lg > .row .es-profile-card .es-profile-title,
.main-content .main-body > .container-xl > .row .es-profile-card .es-profile-title,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .es-profile-title,
.main-body .es-page-content > .container-sm > .row .es-profile-card .es-profile-title,
.main-body .es-page-content > .container-md > .row .es-profile-card .es-profile-title,
.main-body .es-page-content > .container-lg > .row .es-profile-card .es-profile-title,
.main-body .es-page-content > .container-xl > .row .es-profile-card .es-profile-title,
.main-body .main-body > .container-fluid > .row .es-profile-card .es-profile-title,
.main-body .main-body > .container-sm > .row .es-profile-card .es-profile-title,
.main-body .main-body > .container-md > .row .es-profile-card .es-profile-title,
.main-body .main-body > .container-lg > .row .es-profile-card .es-profile-title,
.main-body .main-body > .container-xl > .row .es-profile-card .es-profile-title {
  margin-left: -15px;
  margin-right: -15px;
  border-bottom: 1px solid #e6e6e6;
  background-color: #f3f6f9;
  text-align: center;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .es-profile-title p, .main-content .es-page-content > .container-sm > .row .es-profile-card .es-profile-title p, .main-content .es-page-content > .container-md > .row .es-profile-card .es-profile-title p, .main-content .es-page-content > .container-lg > .row .es-profile-card .es-profile-title p, .main-content .es-page-content > .container-xl > .row .es-profile-card .es-profile-title p,
.main-content .main-body > .container-fluid > .row .es-profile-card .es-profile-title p,
.main-content .main-body > .container-sm > .row .es-profile-card .es-profile-title p,
.main-content .main-body > .container-md > .row .es-profile-card .es-profile-title p,
.main-content .main-body > .container-lg > .row .es-profile-card .es-profile-title p,
.main-content .main-body > .container-xl > .row .es-profile-card .es-profile-title p,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .es-profile-title p,
.main-body .es-page-content > .container-sm > .row .es-profile-card .es-profile-title p,
.main-body .es-page-content > .container-md > .row .es-profile-card .es-profile-title p,
.main-body .es-page-content > .container-lg > .row .es-profile-card .es-profile-title p,
.main-body .es-page-content > .container-xl > .row .es-profile-card .es-profile-title p,
.main-body .main-body > .container-fluid > .row .es-profile-card .es-profile-title p,
.main-body .main-body > .container-sm > .row .es-profile-card .es-profile-title p,
.main-body .main-body > .container-md > .row .es-profile-card .es-profile-title p,
.main-body .main-body > .container-lg > .row .es-profile-card .es-profile-title p,
.main-body .main-body > .container-xl > .row .es-profile-card .es-profile-title p {
  margin-bottom: 0px;
  color: #343A40;
  padding: 12px 0px 12px 0;
  font-weight: 500;
  font-size: 14px;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head {
  position: relative;
  padding-bottom: 13px;
  margin-bottom: 0px;
  display: flex;
  padding-top: 16px;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 17px;
  padding-left: 0px !important;
  padding-right: 0 !important;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .es-emotions, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .es-emotions, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .es-emotions, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .es-emotions, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .es-emotions,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .es-emotions,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .es-emotions,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .es-emotions,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .es-emotions,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .es-emotions,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .es-emotions,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .es-emotions,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .es-emotions,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .es-emotions,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .es-emotions,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .es-emotions,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .es-emotions,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .es-emotions,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .es-emotions,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .es-emotions {
  float: right;
  position: absolute;
  right: 0;
  z-index: 1;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .es-emotions img, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .es-emotions img, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .es-emotions img, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .es-emotions img, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .es-emotions img,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .es-emotions img,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .es-emotions img,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .es-emotions img,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .es-emotions img,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .es-emotions img,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .es-emotions img,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .es-emotions img,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .es-emotions img,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .es-emotions img,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .es-emotions img,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .es-emotions img,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .es-emotions img,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .es-emotions img,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .es-emotions img,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .es-emotions img {
  width: 21px;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .evt-content-copy, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .evt-content-copy, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .evt-content-copy, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .evt-content-copy, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .evt-content-copy,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .evt-content-copy,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .evt-content-copy,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .evt-content-copy,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .evt-content-copy,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .evt-content-copy,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .evt-content-copy,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .evt-content-copy,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .evt-content-copy,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .evt-content-copy,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .evt-content-copy,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .evt-content-copy,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .evt-content-copy,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .evt-content-copy,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .evt-content-copy,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .evt-content-copy {
  align-items: center;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-user-left-section, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-user-left-section, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-user-left-section, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-user-left-section, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-user-left-section,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-user-left-section,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-user-left-section,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .es-user-left-section,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-user-left-section,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-user-left-section,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-user-left-section,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-user-left-section,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-user-left-section,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-user-left-section,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-user-left-section,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-user-left-section,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-user-left-section,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .es-user-left-section,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-user-left-section,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-user-left-section {
  flex: 0 0 80px;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-user-left-section, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-user-left-section, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-user-left-section, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-user-left-section, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-user-left-section,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-user-left-section,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-user-left-section,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .es-user-left-section,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-user-left-section,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-user-left-section,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-user-left-section,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-user-left-section,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-user-left-section,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-user-left-section,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-user-left-section,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-user-left-section,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-user-left-section,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .es-user-left-section,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-user-left-section,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-user-left-section {
  flex: 0 0 80px;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .user-status, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .user-status, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .user-status, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .user-status, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .user-status,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .user-status,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .user-status,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .user-status,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .user-status,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .user-status,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .user-status,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .user-status,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .user-status,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .user-status,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .user-status,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .user-status,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .user-status,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .user-status,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .user-status,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .user-status {
  font-size: 11px;
  font-weight: 400;
  right: 0;
  top: 0;
  padding: 1px 13px !important;
  margin-left: 5px;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-company-avatar, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-company-avatar, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-company-avatar, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-company-avatar, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-company-avatar,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-company-avatar,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-company-avatar,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .es-company-avatar,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-company-avatar,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-company-avatar,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-company-avatar,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-company-avatar,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-company-avatar,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-company-avatar,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-company-avatar,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-company-avatar,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-company-avatar,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .es-company-avatar,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-company-avatar,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-company-avatar {
  border-radius: 2px;
  background: #fff;
  height: 80px !important;
  flex: 0 0 80px;
  max-width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  position: relative;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-company-avatar img, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-company-avatar img, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-company-avatar img, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-company-avatar img, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-company-avatar img,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-company-avatar img,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-company-avatar img,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .es-company-avatar img,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-company-avatar img,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-company-avatar img,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-company-avatar img,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-company-avatar img,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-company-avatar img,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-company-avatar img,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-company-avatar img,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-company-avatar img,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-company-avatar img,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .es-company-avatar img,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-company-avatar img,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-company-avatar img {
  opacity: 0.8;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-company-avatar::before, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-company-avatar::before, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-company-avatar::before, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-company-avatar::before, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-company-avatar::before,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-company-avatar::before,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-company-avatar::before,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .es-company-avatar::before,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-company-avatar::before,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-company-avatar::before,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-company-avatar::before,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-company-avatar::before,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-company-avatar::before,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-company-avatar::before,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-company-avatar::before,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-company-avatar::before,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-company-avatar::before,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .es-company-avatar::before,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-company-avatar::before,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-company-avatar::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  background-color: #fff;
  opacity: 0.65;
  visibility: hidden;
  transition: all 0.3s ease-out;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-company-avatar:hover::before, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-company-avatar:hover::before, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-company-avatar:hover::before, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-company-avatar:hover::before, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-company-avatar:hover::before,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-company-avatar:hover::before,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-company-avatar:hover::before,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .es-company-avatar:hover::before,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-company-avatar:hover::before,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-company-avatar:hover::before,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-company-avatar:hover::before,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-company-avatar:hover::before,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-company-avatar:hover::before,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-company-avatar:hover::before,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-company-avatar:hover::before,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-company-avatar:hover::before,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-company-avatar:hover::before,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .es-company-avatar:hover::before,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-company-avatar:hover::before,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-company-avatar:hover::before {
  visibility: visible;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-company-avatar:hover i, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-company-avatar:hover i, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-company-avatar:hover i, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-company-avatar:hover i, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-company-avatar:hover i,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-company-avatar:hover i,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-company-avatar:hover i,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .es-company-avatar:hover i,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-company-avatar:hover i,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-company-avatar:hover i,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-company-avatar:hover i,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-company-avatar:hover i,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-company-avatar:hover i,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-company-avatar:hover i,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-company-avatar:hover i,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-company-avatar:hover i,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-company-avatar:hover i,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .es-company-avatar:hover i,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-company-avatar:hover i,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-company-avatar:hover i {
  visibility: visible;
  z-index: 999;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-company-avatar:hover i:hover, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-company-avatar:hover i:hover, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-company-avatar:hover i:hover, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-company-avatar:hover i:hover, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-company-avatar:hover i:hover,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-company-avatar:hover i:hover,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-company-avatar:hover i:hover,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .es-company-avatar:hover i:hover,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-company-avatar:hover i:hover,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-company-avatar:hover i:hover,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-company-avatar:hover i:hover,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-company-avatar:hover i:hover,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-company-avatar:hover i:hover,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-company-avatar:hover i:hover,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-company-avatar:hover i:hover,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-company-avatar:hover i:hover,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-company-avatar:hover i:hover,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .es-company-avatar:hover i:hover,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-company-avatar:hover i:hover,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-company-avatar:hover i:hover {
  color: #F7813D;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-company-avatar i, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-company-avatar i, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-company-avatar i, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-company-avatar i, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-company-avatar i,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-company-avatar i,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-company-avatar i,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .es-company-avatar i,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-company-avatar i,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-company-avatar i,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-company-avatar i,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-company-avatar i,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-company-avatar i,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-company-avatar i,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-company-avatar i,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-company-avatar i,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-company-avatar i,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .es-company-avatar i,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-company-avatar i,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-company-avatar i {
  visibility: hidden;
  position: absolute;
  bottom: 0;
  left: 57px;
  font-size: 18px;
  cursor: pointer;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-company-avatar span, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-company-avatar span, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-company-avatar span, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-company-avatar span, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-company-avatar span,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-company-avatar span,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-company-avatar span,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .es-company-avatar span,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-company-avatar span,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-company-avatar span,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-company-avatar span,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-company-avatar span,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-company-avatar span,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-company-avatar span,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-company-avatar span,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-company-avatar span,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-company-avatar span,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .es-company-avatar span,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-company-avatar span,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-company-avatar span {
  font-size: 20px;
  color: #fff;
}
@media only screen and (max-width: 1440px) {
  .main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-company-avatar span, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-company-avatar span, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-company-avatar span, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-company-avatar span, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-company-avatar span,
  .main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-company-avatar span,
  .main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-company-avatar span,
  .main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .es-company-avatar span,
  .main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-company-avatar span,
  .main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-company-avatar span,
  .main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-company-avatar span,
  .main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-company-avatar span,
  .main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-company-avatar span,
  .main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-company-avatar span,
  .main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-company-avatar span,
  .main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-company-avatar span,
  .main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-company-avatar span,
  .main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .es-company-avatar span,
  .main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-company-avatar span,
  .main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-company-avatar span {
    font-size: 16px;
  }
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-company-avatar img, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-company-avatar img, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-company-avatar img, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-company-avatar img, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-company-avatar img,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-company-avatar img,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-company-avatar img,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .es-company-avatar img,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-company-avatar img,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-company-avatar img,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-company-avatar img,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-company-avatar img,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-company-avatar img,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-company-avatar img,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-company-avatar img,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-company-avatar img,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-company-avatar img,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .es-company-avatar img,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-company-avatar img,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-company-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .user-avatar, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .user-avatar, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .user-avatar, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .user-avatar, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .user-avatar,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .user-avatar,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .user-avatar,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .user-avatar,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .user-avatar,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .user-avatar,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .user-avatar,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .user-avatar,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .user-avatar,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .user-avatar,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .user-avatar,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .user-avatar,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .user-avatar,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .user-avatar,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .user-avatar,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .user-avatar {
  border-radius: 10px;
  background: #fff;
  height: 71px;
  flex: 0 0 80px;
  max-width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  position: relative;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .user-avatar img, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .user-avatar img, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .user-avatar img, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .user-avatar img, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .user-avatar img,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .user-avatar img,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .user-avatar img,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .user-avatar img,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .user-avatar img,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .user-avatar img,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .user-avatar img,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .user-avatar img,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .user-avatar img,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .user-avatar img,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .user-avatar img,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .user-avatar img,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .user-avatar img,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .user-avatar img,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .user-avatar img,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .user-avatar img {
  opacity: 0.8;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .user-avatar::before, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .user-avatar::before, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .user-avatar::before, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .user-avatar::before, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .user-avatar::before,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .user-avatar::before,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .user-avatar::before,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .user-avatar::before,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .user-avatar::before,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .user-avatar::before,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .user-avatar::before,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .user-avatar::before,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .user-avatar::before,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .user-avatar::before,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .user-avatar::before,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .user-avatar::before,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .user-avatar::before,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .user-avatar::before,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .user-avatar::before,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .user-avatar::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  background-color: #fff;
  opacity: 0.65;
  visibility: hidden;
  transition: all 0.3s ease-out;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .user-avatar:hover::before, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .user-avatar:hover::before, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .user-avatar:hover::before, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .user-avatar:hover::before, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .user-avatar:hover::before,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .user-avatar:hover::before,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .user-avatar:hover::before,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .user-avatar:hover::before,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .user-avatar:hover::before,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .user-avatar:hover::before,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .user-avatar:hover::before,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .user-avatar:hover::before,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .user-avatar:hover::before,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .user-avatar:hover::before,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .user-avatar:hover::before,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .user-avatar:hover::before,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .user-avatar:hover::before,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .user-avatar:hover::before,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .user-avatar:hover::before,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .user-avatar:hover::before {
  visibility: visible;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .user-avatar:hover i, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .user-avatar:hover i, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .user-avatar:hover i, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .user-avatar:hover i, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .user-avatar:hover i,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .user-avatar:hover i,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .user-avatar:hover i,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .user-avatar:hover i,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .user-avatar:hover i,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .user-avatar:hover i,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .user-avatar:hover i,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .user-avatar:hover i,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .user-avatar:hover i,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .user-avatar:hover i,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .user-avatar:hover i,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .user-avatar:hover i,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .user-avatar:hover i,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .user-avatar:hover i,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .user-avatar:hover i,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .user-avatar:hover i {
  visibility: visible;
  z-index: 999;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .user-avatar:hover i:hover, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .user-avatar:hover i:hover, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .user-avatar:hover i:hover, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .user-avatar:hover i:hover, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .user-avatar:hover i:hover,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .user-avatar:hover i:hover,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .user-avatar:hover i:hover,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .user-avatar:hover i:hover,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .user-avatar:hover i:hover,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .user-avatar:hover i:hover,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .user-avatar:hover i:hover,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .user-avatar:hover i:hover,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .user-avatar:hover i:hover,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .user-avatar:hover i:hover,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .user-avatar:hover i:hover,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .user-avatar:hover i:hover,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .user-avatar:hover i:hover,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .user-avatar:hover i:hover,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .user-avatar:hover i:hover,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .user-avatar:hover i:hover {
  color: #F7813D;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .user-avatar i, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .user-avatar i, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .user-avatar i, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .user-avatar i, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .user-avatar i,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .user-avatar i,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .user-avatar i,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .user-avatar i,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .user-avatar i,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .user-avatar i,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .user-avatar i,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .user-avatar i,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .user-avatar i,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .user-avatar i,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .user-avatar i,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .user-avatar i,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .user-avatar i,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .user-avatar i,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .user-avatar i,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .user-avatar i {
  visibility: hidden;
  position: absolute;
  bottom: 0;
  left: 57px;
  font-size: 18px;
  cursor: pointer;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .user-avatar span, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .user-avatar span, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .user-avatar span, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .user-avatar span, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .user-avatar span,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .user-avatar span,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .user-avatar span,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .user-avatar span,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .user-avatar span,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .user-avatar span,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .user-avatar span,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .user-avatar span,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .user-avatar span,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .user-avatar span,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .user-avatar span,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .user-avatar span,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .user-avatar span,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .user-avatar span,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .user-avatar span,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .user-avatar span {
  font-size: 20px;
  color: #fff;
}
@media only screen and (max-width: 1440px) {
  .main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .user-avatar span, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .user-avatar span, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .user-avatar span, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .user-avatar span, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .user-avatar span,
  .main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .user-avatar span,
  .main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .user-avatar span,
  .main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .user-avatar span,
  .main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .user-avatar span,
  .main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .user-avatar span,
  .main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .user-avatar span,
  .main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .user-avatar span,
  .main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .user-avatar span,
  .main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .user-avatar span,
  .main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .user-avatar span,
  .main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .user-avatar span,
  .main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .user-avatar span,
  .main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .user-avatar span,
  .main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .user-avatar span,
  .main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .user-avatar span {
    font-size: 16px;
  }
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .user-avatar img, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .user-avatar img, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .user-avatar img, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .user-avatar img, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .user-avatar img,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .user-avatar img,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .user-avatar img,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .user-avatar img,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .user-avatar img,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .user-avatar img,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .user-avatar img,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .user-avatar img,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .user-avatar img,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .user-avatar img,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .user-avatar img,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .user-avatar img,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .user-avatar img,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .user-avatar img,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .user-avatar img,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info:has(.tenure-crm[style="display: none;"]) .icons, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info:has(.tenure-crm[style="display: none;"]) .icons, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-profile-info:has(.tenure-crm[style="display: none;"]) .icons, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info:has(.tenure-crm[style="display: none;"]) .icons, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info:has(.tenure-crm[style="display: none;"]) .icons,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info:has(.tenure-crm[style="display: none;"]) .icons,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info:has(.tenure-crm[style="display: none;"]) .icons,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .es-profile-info:has(.tenure-crm[style="display: none;"]) .icons,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info:has(.tenure-crm[style="display: none;"]) .icons,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info:has(.tenure-crm[style="display: none;"]) .icons,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info:has(.tenure-crm[style="display: none;"]) .icons,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info:has(.tenure-crm[style="display: none;"]) .icons,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-profile-info:has(.tenure-crm[style="display: none;"]) .icons,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info:has(.tenure-crm[style="display: none;"]) .icons,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info:has(.tenure-crm[style="display: none;"]) .icons,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info:has(.tenure-crm[style="display: none;"]) .icons,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info:has(.tenure-crm[style="display: none;"]) .icons,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .es-profile-info:has(.tenure-crm[style="display: none;"]) .icons,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info:has(.tenure-crm[style="display: none;"]) .icons,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info:has(.tenure-crm[style="display: none;"]) .icons {
  bottom: 1px !important;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info:has(.es-emotions) .icons, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info:has(.es-emotions) .icons, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-profile-info:has(.es-emotions) .icons, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info:has(.es-emotions) .icons, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info:has(.es-emotions) .icons,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info:has(.es-emotions) .icons,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info:has(.es-emotions) .icons,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .es-profile-info:has(.es-emotions) .icons,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info:has(.es-emotions) .icons,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info:has(.es-emotions) .icons,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info:has(.es-emotions) .icons,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info:has(.es-emotions) .icons,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-profile-info:has(.es-emotions) .icons,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info:has(.es-emotions) .icons,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info:has(.es-emotions) .icons,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info:has(.es-emotions) .icons,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info:has(.es-emotions) .icons,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .es-profile-info:has(.es-emotions) .icons,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info:has(.es-emotions) .icons,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info:has(.es-emotions) .icons {
  bottom: 0px !important;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info:not(:has(.es-emotions)) .icons, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info:not(:has(.es-emotions)) .icons, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-profile-info:not(:has(.es-emotions)) .icons, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info:not(:has(.es-emotions)) .icons, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info:not(:has(.es-emotions)) .icons,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info:not(:has(.es-emotions)) .icons,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info:not(:has(.es-emotions)) .icons,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .es-profile-info:not(:has(.es-emotions)) .icons,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info:not(:has(.es-emotions)) .icons,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info:not(:has(.es-emotions)) .icons,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info:not(:has(.es-emotions)) .icons,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info:not(:has(.es-emotions)) .icons,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-profile-info:not(:has(.es-emotions)) .icons,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info:not(:has(.es-emotions)) .icons,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info:not(:has(.es-emotions)) .icons,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info:not(:has(.es-emotions)) .icons,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info:not(:has(.es-emotions)) .icons,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .es-profile-info:not(:has(.es-emotions)) .icons,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info:not(:has(.es-emotions)) .icons,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info:not(:has(.es-emotions)) .icons {
  bottom: 0px !important;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-profile-info, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .es-profile-info,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-profile-info,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .es-profile-info,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info {
  flex: 1;
  position: relative;
  padding-top: 5px;
  height: 100%;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .icons, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .icons, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .icons, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .icons, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .icons,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .icons,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .icons,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .icons,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .icons,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .icons,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .icons,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .icons,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .icons,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .icons,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .icons,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .icons,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .icons,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .icons,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .icons,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .icons {
  position: absolute;
  right: 0;
  cursor: pointer;
  bottom: -3px;
  display: flex;
  align-items: center;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .icons > span, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .icons > span, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .icons > span, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .icons > span, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .icons > span,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .icons > span,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .icons > span,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .icons > span,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .icons > span,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .icons > span,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .icons > span,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .icons > span,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .icons > span,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .icons > span,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .icons > span,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .icons > span,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .icons > span,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .icons > span,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .icons > span,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .icons > span {
  margin-top: 0;
  margin-right: 0;
  margin-left: 3px;
  height: 14px;
  display: flex;
  align-items: center;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .icons > span img, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .icons > span img, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .icons > span img, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .icons > span img, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .icons > span img,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .icons > span img,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .icons > span img,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .icons > span img,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .icons > span img,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .icons > span img,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .icons > span img,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .icons > span img,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .icons > span img,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .icons > span img,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .icons > span img,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .icons > span img,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .icons > span img,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .icons > span img,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .icons > span img,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .icons > span img {
  margin-top: 0 !important;
  width: 14px !important;
  border-radius: 1px;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .icons > span img.es-flag-icon, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .icons > span img.es-flag-icon, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .icons > span img.es-flag-icon, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .icons > span img.es-flag-icon, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .icons > span img.es-flag-icon,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .icons > span img.es-flag-icon,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .icons > span img.es-flag-icon,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .icons > span img.es-flag-icon,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .icons > span img.es-flag-icon,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .icons > span img.es-flag-icon,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .icons > span img.es-flag-icon,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .icons > span img.es-flag-icon,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .icons > span img.es-flag-icon,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .icons > span img.es-flag-icon,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .icons > span img.es-flag-icon,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .icons > span img.es-flag-icon,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .icons > span img.es-flag-icon,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .icons > span img.es-flag-icon,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .icons > span img.es-flag-icon,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .icons > span img.es-flag-icon {
  position: relative;
  top: 1px;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .icons i, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .icons i, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .icons i, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .icons i, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .icons i,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .icons i,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .icons i,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .icons i,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .icons i,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .icons i,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .icons i,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .icons i,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .icons i,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .icons i,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .icons i,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .icons i,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .icons i,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .icons i,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .icons i,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .icons i {
  font-size: 1.12rem;
  line-height: normal;
  padding-left: 0px;
  vertical-align: middle;
  margin: 0 -2px;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .icons i:hover, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .icons i:hover, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .icons i:hover, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .icons i:hover, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .icons i:hover,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .icons i:hover,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .icons i:hover,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .icons i:hover,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .icons i:hover,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .icons i:hover,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .icons i:hover,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .icons i:hover,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .icons i:hover,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .icons i:hover,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .icons i:hover,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .icons i:hover,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .icons i:hover,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .icons i:hover,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .icons i:hover,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .icons i:hover {
  color: #F7813D;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .es-data-no-available, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .es-data-no-available, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .es-data-no-available, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .es-data-no-available, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .es-data-no-available,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .es-data-no-available,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .es-data-no-available,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .es-data-no-available,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .es-data-no-available,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .es-data-no-available,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .es-data-no-available,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .es-data-no-available,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .es-data-no-available,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .es-data-no-available,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .es-data-no-available,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .es-data-no-available,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .es-data-no-available,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .es-data-no-available,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .es-data-no-available,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .es-data-no-available {
  color: #ccc;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .es-success, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .es-success, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .es-success, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .es-success, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .es-success,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .es-success,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .es-success,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .es-success,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .es-success,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .es-success,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .es-success,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .es-success,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .es-success,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .es-success,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .es-success,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .es-success,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .es-success,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .es-success,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .es-success,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .es-success {
  border: 2px solid #d6e9c6;
  color: #3c763d;
  border-radius: 2px;
  font-weight: 600;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .es-inactive, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .es-inactive, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .es-inactive, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .es-inactive, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .es-inactive,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .es-inactive,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .es-inactive,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .es-inactive,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .es-inactive,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .es-inactive,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .es-inactive,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .es-inactive,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .es-inactive,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .es-inactive,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .es-inactive,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .es-inactive,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .es-inactive,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .es-inactive,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .es-inactive,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .es-inactive {
  border: 2px solid #ebccd1;
  border-radius: 2px;
  color: #a94442;
  font-weight: 600;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info span.user-status, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info span.user-status, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-profile-info span.user-status, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info span.user-status, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info span.user-status,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info span.user-status,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info span.user-status,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .es-profile-info span.user-status,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info span.user-status,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info span.user-status,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info span.user-status,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info span.user-status,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-profile-info span.user-status,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info span.user-status,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info span.user-status,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info span.user-status,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info span.user-status,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .es-profile-info span.user-status,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info span.user-status,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info span.user-status {
  padding-left: 0px !important;
  padding: 1px 10px 2px 10px !important;
  margin-left: 0px;
  font-size: 11px;
  background: #fff;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .user-name, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .user-name, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .user-name, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .user-name, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .user-name,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .user-name,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .user-name,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .user-name,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .user-name,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .user-name,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .user-name,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .user-name,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .user-name,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .user-name,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .user-name,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .user-name,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .user-name,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .user-name,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .user-name,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .user-name {
  font-weight: 600;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .user-status-mrg, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .user-status-mrg, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .user-status-mrg, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .user-status-mrg, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .user-status-mrg,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .user-status-mrg,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .user-status-mrg,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .user-status-mrg,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .user-status-mrg,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .user-status-mrg,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .user-status-mrg,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .user-status-mrg,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .user-status-mrg,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .user-status-mrg,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .user-status-mrg,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info .user-status-mrg,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info .user-status-mrg,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .es-profile-info .user-status-mrg,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info .user-status-mrg,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info .user-status-mrg {
  margin-top: 8px;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info p, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info p, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-profile-info p, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info p, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info p,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info p,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info p,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .es-profile-info p,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info p,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info p,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info p,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info p,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-profile-info p,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info p,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info p,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info p,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info p,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .es-profile-info p,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info p,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info p {
  margin-bottom: 6px;
  display: flex;
  font-size: 11px;
  line-height: normal;
  color: #495057;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info p label, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info p label, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-profile-info p label, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info p label, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info p label,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info p label,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info p label,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .es-profile-info p label,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info p label,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info p label,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info p label,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info p label,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .es-profile-info p label,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info p label,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info p label,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .es-profile-info p label,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .es-profile-info p label,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .es-profile-info p label,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .es-profile-info p label,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .es-profile-info p label {
  flex: 0 0 65px;
  max-width: 65px;
  color: #868e96;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .user-name, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .user-name, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .user-name, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .user-name, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .user-name,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .user-name,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .user-name,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .user-name,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .user-name,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .user-name,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .user-name,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .user-name,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .user-name,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .user-name,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .user-name,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .user-name,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .user-name,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .user-name,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .user-name,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .user-name {
  font-weight: normal;
  margin-top: 4px;
  margin-bottom: 5px;
  font-size: 16px;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .user-time-zone, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .user-time-zone, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .user-time-zone, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .user-time-zone, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .user-time-zone,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .user-time-zone,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .user-time-zone,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .user-time-zone,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .user-time-zone,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .user-time-zone,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .user-time-zone,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .user-time-zone,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .user-time-zone,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .user-time-zone,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .user-time-zone,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .user-time-zone,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .user-time-zone,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .user-time-zone,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .user-time-zone,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .user-time-zone {
  line-height: normal;
  font-size: 11px;
  margin-top: 4px;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .user-time-zone img, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .user-time-zone img, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .user-time-zone img, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .user-time-zone img, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .user-time-zone img,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .user-time-zone img,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .user-time-zone img,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .user-time-zone img,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .user-time-zone img,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .user-time-zone img,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .user-time-zone img,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .user-time-zone img,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .user-time-zone img,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .user-time-zone img,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .user-time-zone img,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .user-time-zone img,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .user-time-zone img,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .user-time-zone img,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .user-time-zone img,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .user-time-zone img {
  width: 14px;
  vertical-align: sub;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .user-time-zone span, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .user-time-zone span, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-head .user-time-zone span, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .user-time-zone span, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .user-time-zone span,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-head .user-time-zone span,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-head .user-time-zone span,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-head .user-time-zone span,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-head .user-time-zone span,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-head .user-time-zone span,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-head .user-time-zone span,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-head .user-time-zone span,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-head .user-time-zone span,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-head .user-time-zone span,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-head .user-time-zone span,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-head .user-time-zone span,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-head .user-time-zone span,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-head .user-time-zone span,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-head .user-time-zone span,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-head .user-time-zone span {
  color: #868e96;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-body, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-body, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-body, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-body,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-body,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-body,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-body,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-body,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-body,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-body,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-body,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-body,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-body,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-body,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-body,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-body,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-body,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-body {
  padding-bottom: 15px;
  scrollbar-color: #6a6a6a #f8f9fa;
  scrollbar-width: thin;
  font-size: 13px;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body::-webkit-scrollbar-track, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-body::-webkit-scrollbar-track, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-body::-webkit-scrollbar-track, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-body::-webkit-scrollbar-track, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-body::-webkit-scrollbar-track,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-body::-webkit-scrollbar-track,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-body::-webkit-scrollbar-track,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-body::-webkit-scrollbar-track,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-body::-webkit-scrollbar-track,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-body::-webkit-scrollbar-track,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body::-webkit-scrollbar-track,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-body::-webkit-scrollbar-track,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-body::-webkit-scrollbar-track,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-body::-webkit-scrollbar-track,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-body::-webkit-scrollbar-track,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-body::-webkit-scrollbar-track,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-body::-webkit-scrollbar-track,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-body::-webkit-scrollbar-track,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-body::-webkit-scrollbar-track,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px #6a6a6a;
  background-color: #f8f9fa;
  border-radius: 8px;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body::-webkit-scrollbar, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-body::-webkit-scrollbar, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-body::-webkit-scrollbar, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-body::-webkit-scrollbar, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-body::-webkit-scrollbar,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-body::-webkit-scrollbar,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-body::-webkit-scrollbar,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-body::-webkit-scrollbar,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-body::-webkit-scrollbar,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-body::-webkit-scrollbar,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body::-webkit-scrollbar,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-body::-webkit-scrollbar,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-body::-webkit-scrollbar,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-body::-webkit-scrollbar,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-body::-webkit-scrollbar,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-body::-webkit-scrollbar,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-body::-webkit-scrollbar,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-body::-webkit-scrollbar,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-body::-webkit-scrollbar,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-body::-webkit-scrollbar {
  width: 8px;
  border-radius: 8px;
  background-color: #f8f9fa;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body::-webkit-scrollbar-thumb, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-body::-webkit-scrollbar-thumb, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-body::-webkit-scrollbar-thumb, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-body::-webkit-scrollbar-thumb, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-body::-webkit-scrollbar-thumb,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-body::-webkit-scrollbar-thumb,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-body::-webkit-scrollbar-thumb,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-body::-webkit-scrollbar-thumb,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-body::-webkit-scrollbar-thumb,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-body::-webkit-scrollbar-thumb,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body::-webkit-scrollbar-thumb,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-body::-webkit-scrollbar-thumb,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-body::-webkit-scrollbar-thumb,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-body::-webkit-scrollbar-thumb,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-body::-webkit-scrollbar-thumb,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-body::-webkit-scrollbar-thumb,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-body::-webkit-scrollbar-thumb,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-body::-webkit-scrollbar-thumb,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-body::-webkit-scrollbar-thumb,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-body::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background-color: #6a6a6a;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-body .profile-body-item, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-body .profile-body-item,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-body .profile-body-item,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-body .profile-body-item,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item {
  margin-bottom: 0px;
  margin-top: 5px;
  padding-bottom: 8px;
  width: 50%;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item ul li.evt-content-copy, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item ul li.evt-content-copy, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-body .profile-body-item ul li.evt-content-copy, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item ul li.evt-content-copy, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item ul li.evt-content-copy,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item ul li.evt-content-copy,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item ul li.evt-content-copy,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-body .profile-body-item ul li.evt-content-copy,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item ul li.evt-content-copy,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item ul li.evt-content-copy,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item ul li.evt-content-copy,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item ul li.evt-content-copy,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-body .profile-body-item ul li.evt-content-copy,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item ul li.evt-content-copy,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item ul li.evt-content-copy,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item ul li.evt-content-copy,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item ul li.evt-content-copy,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-body .profile-body-item ul li.evt-content-copy,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item ul li.evt-content-copy,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item ul li.evt-content-copy {
  padding-right: 11px;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item:last-child, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item:last-child, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-body .profile-body-item:last-child, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item:last-child, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item:last-child,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item:last-child,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item:last-child,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-body .profile-body-item:last-child,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item:last-child,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item:last-child,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item:last-child,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item:last-child,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-body .profile-body-item:last-child,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item:last-child,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item:last-child,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item:last-child,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item:last-child,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-body .profile-body-item:last-child,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item:last-child,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item:last-child {
  margin-bottom: 0;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item:last-child ul, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item:last-child ul, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-body .profile-body-item:last-child ul, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item:last-child ul, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item:last-child ul,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item:last-child ul,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item:last-child ul,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-body .profile-body-item:last-child ul,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item:last-child ul,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item:last-child ul,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item:last-child ul,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item:last-child ul,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-body .profile-body-item:last-child ul,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item:last-child ul,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item:last-child ul,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item:last-child ul,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item:last-child ul,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-body .profile-body-item:last-child ul,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item:last-child ul,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item:last-child ul {
  border-bottom: 0;
  padding-bottom: 0;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item h3, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item h3, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-body .profile-body-item h3, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item h3, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item h3, .main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item .h3, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item .h3, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-body .profile-body-item .h3, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item .h3, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item .h3,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item h3,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item h3,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-body .profile-body-item h3,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item h3,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item h3,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item .h3,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item .h3,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-body .profile-body-item .h3,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item .h3,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item .h3,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item h3,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item h3,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-body .profile-body-item h3,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item h3,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item h3,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item .h3,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item .h3,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-body .profile-body-item .h3,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item .h3,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item .h3,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item h3,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item h3,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-body .profile-body-item h3,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item h3,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item h3,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item .h3,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item .h3,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-body .profile-body-item .h3,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item .h3,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item .h3 {
  font-size: 16px;
  color: #495057;
  font-weight: 500;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(217, 217, 217, 0.8);
  padding-bottom: 10px;
}
@media only screen and (max-width: 1440px) {
  .main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item h3, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item h3, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-body .profile-body-item h3, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item h3, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item h3, .main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item .h3, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item .h3, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-body .profile-body-item .h3, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item .h3, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item .h3,
  .main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item h3,
  .main-content .main-body > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item h3,
  .main-content .main-body > .container-md > .row .es-profile-card .user-profile-body .profile-body-item h3,
  .main-content .main-body > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item h3,
  .main-content .main-body > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item h3,
  .main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item .h3,
  .main-content .main-body > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item .h3,
  .main-content .main-body > .container-md > .row .es-profile-card .user-profile-body .profile-body-item .h3,
  .main-content .main-body > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item .h3,
  .main-content .main-body > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item .h3,
  .main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item h3,
  .main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item h3,
  .main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-body .profile-body-item h3,
  .main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item h3,
  .main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item h3,
  .main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item .h3,
  .main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item .h3,
  .main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-body .profile-body-item .h3,
  .main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item .h3,
  .main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item .h3,
  .main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item h3,
  .main-body .main-body > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item h3,
  .main-body .main-body > .container-md > .row .es-profile-card .user-profile-body .profile-body-item h3,
  .main-body .main-body > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item h3,
  .main-body .main-body > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item h3,
  .main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item .h3,
  .main-body .main-body > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item .h3,
  .main-body .main-body > .container-md > .row .es-profile-card .user-profile-body .profile-body-item .h3,
  .main-body .main-body > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item .h3,
  .main-body .main-body > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item .h3 {
    font-size: 14px;
  }
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item ul, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item ul, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-body .profile-body-item ul, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item ul, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item ul,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item ul,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item ul,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-body .profile-body-item ul,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item ul,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item ul,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item ul,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item ul,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-body .profile-body-item ul,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item ul,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item ul,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item ul,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item ul,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-body .profile-body-item ul,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item ul,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item ul {
  padding: 0;
  list-style: none;
  margin: 5px 0 0 0;
  padding-bottom: 12px;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item ul li, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item ul li, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-body .profile-body-item ul li, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item ul li, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item ul li,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item ul li,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item ul li,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-body .profile-body-item ul li,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item ul li,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item ul li,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item ul li,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item ul li,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-body .profile-body-item ul li,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item ul li,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item ul li,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item ul li,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item ul li,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-body .profile-body-item ul li,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item ul li,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item ul li {
  font-size: 13px;
  align-items: center;
  margin: 10px 0 20px 0;
  flex-wrap: wrap;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item ul li:last-child, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item ul li:last-child, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-body .profile-body-item ul li:last-child, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item ul li:last-child, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item ul li:last-child,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item ul li:last-child,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item ul li:last-child,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-body .profile-body-item ul li:last-child,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item ul li:last-child,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item ul li:last-child,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item ul li:last-child,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item ul li:last-child,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-body .profile-body-item ul li:last-child,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item ul li:last-child,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item ul li:last-child,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item ul li:last-child,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item ul li:last-child,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-body .profile-body-item ul li:last-child,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item ul li:last-child,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item ul li:last-child {
  margin-bottom: 0;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item ul li i, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item ul li i, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-body .profile-body-item ul li i, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item ul li i, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item ul li i,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item ul li i,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item ul li i,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-body .profile-body-item ul li i,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item ul li i,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item ul li i,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item ul li i,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item ul li i,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-body .profile-body-item ul li i,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item ul li i,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item ul li i,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item ul li i,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item ul li i,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-body .profile-body-item ul li i,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item ul li i,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item ul li i {
  visibility: hidden;
  z-index: 999;
  position: absolute;
  cursor: pointer;
  margin-right: 10px;
  background-color: #fff !important;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item ul li:hover i, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item ul li:hover i, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-body .profile-body-item ul li:hover i, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item ul li:hover i, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item ul li:hover i,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item ul li:hover i,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item ul li:hover i,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-body .profile-body-item ul li:hover i,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item ul li:hover i,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item ul li:hover i,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item ul li:hover i,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item ul li:hover i,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-body .profile-body-item ul li:hover i,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item ul li:hover i,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item ul li:hover i,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item ul li:hover i,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item ul li:hover i,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-body .profile-body-item ul li:hover i,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item ul li:hover i,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item ul li:hover i {
  visibility: visible;
  z-index: 999;
  position: absolute;
  cursor: pointer;
  right: -1px;
}
@media only screen and (max-width: 1440px) {
  .main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item ul li, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item ul li, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-body .profile-body-item ul li, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item ul li, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item ul li,
  .main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item ul li,
  .main-content .main-body > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item ul li,
  .main-content .main-body > .container-md > .row .es-profile-card .user-profile-body .profile-body-item ul li,
  .main-content .main-body > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item ul li,
  .main-content .main-body > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item ul li,
  .main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item ul li,
  .main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item ul li,
  .main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-body .profile-body-item ul li,
  .main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item ul li,
  .main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item ul li,
  .main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item ul li,
  .main-body .main-body > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item ul li,
  .main-body .main-body > .container-md > .row .es-profile-card .user-profile-body .profile-body-item ul li,
  .main-body .main-body > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item ul li,
  .main-body .main-body > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item ul li {
    font-size: 12px;
  }
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item ul li label, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item ul li label, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-body .profile-body-item ul li label, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item ul li label, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item ul li label,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item ul li label,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item ul li label,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-body .profile-body-item ul li label,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item ul li label,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item ul li label,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item ul li label,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item ul li label,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-body .profile-body-item ul li label,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item ul li label,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item ul li label,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item ul li label,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item ul li label,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-body .profile-body-item ul li label,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item ul li label,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item ul li label {
  font-weight: 500;
  display: block;
  color: #212529;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item p, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item p, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-body .profile-body-item p, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item p, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item p,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item p,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item p,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-body .profile-body-item p,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item p,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item p,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item p,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item p,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-body .profile-body-item p,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item p,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item p,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-item p,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-body .profile-body-item p,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-body .profile-body-item p,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-body .profile-body-item p,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-body .profile-body-item p {
  margin-bottom: 0;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-content, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-body .profile-body-content, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-body .profile-body-content, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-body .profile-body-content, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-body .profile-body-content,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-content,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-body .profile-body-content,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-body .profile-body-content,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-body .profile-body-content,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-body .profile-body-content,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-content,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-body .profile-body-content,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-body .profile-body-content,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-body .profile-body-content,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-body .profile-body-content,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-content,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-body .profile-body-content,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-body .profile-body-content,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-body .profile-body-content,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-body .profile-body-content {
  border-top: 1px solid #e6e6e6;
  padding-top: 10px;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-content ul, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-body .profile-body-content ul, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-body .profile-body-content ul, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-body .profile-body-content ul, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-body .profile-body-content ul,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-content ul,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-body .profile-body-content ul,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-body .profile-body-content ul,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-body .profile-body-content ul,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-body .profile-body-content ul,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-content ul,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-body .profile-body-content ul,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-body .profile-body-content ul,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-body .profile-body-content ul,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-body .profile-body-content ul,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-content ul,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-body .profile-body-content ul,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-body .profile-body-content ul,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-body .profile-body-content ul,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-body .profile-body-content ul {
  margin-left: 0px;
  padding-left: 0px;
  list-style: none;
  margin-top: 5px;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-content ul li, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-body .profile-body-content ul li, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-body .profile-body-content ul li, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-body .profile-body-content ul li, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-body .profile-body-content ul li,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-content ul li,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-body .profile-body-content ul li,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-body .profile-body-content ul li,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-body .profile-body-content ul li,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-body .profile-body-content ul li,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-content ul li,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-body .profile-body-content ul li,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-body .profile-body-content ul li,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-body .profile-body-content ul li,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-body .profile-body-content ul li,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-content ul li,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-body .profile-body-content ul li,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-body .profile-body-content ul li,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-body .profile-body-content ul li,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-body .profile-body-content ul li {
  display: block;
}
.main-content .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-content ul li label, .main-content .es-page-content > .container-sm > .row .es-profile-card .user-profile-body .profile-body-content ul li label, .main-content .es-page-content > .container-md > .row .es-profile-card .user-profile-body .profile-body-content ul li label, .main-content .es-page-content > .container-lg > .row .es-profile-card .user-profile-body .profile-body-content ul li label, .main-content .es-page-content > .container-xl > .row .es-profile-card .user-profile-body .profile-body-content ul li label,
.main-content .main-body > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-content ul li label,
.main-content .main-body > .container-sm > .row .es-profile-card .user-profile-body .profile-body-content ul li label,
.main-content .main-body > .container-md > .row .es-profile-card .user-profile-body .profile-body-content ul li label,
.main-content .main-body > .container-lg > .row .es-profile-card .user-profile-body .profile-body-content ul li label,
.main-content .main-body > .container-xl > .row .es-profile-card .user-profile-body .profile-body-content ul li label,
.main-body .es-page-content > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-content ul li label,
.main-body .es-page-content > .container-sm > .row .es-profile-card .user-profile-body .profile-body-content ul li label,
.main-body .es-page-content > .container-md > .row .es-profile-card .user-profile-body .profile-body-content ul li label,
.main-body .es-page-content > .container-lg > .row .es-profile-card .user-profile-body .profile-body-content ul li label,
.main-body .es-page-content > .container-xl > .row .es-profile-card .user-profile-body .profile-body-content ul li label,
.main-body .main-body > .container-fluid > .row .es-profile-card .user-profile-body .profile-body-content ul li label,
.main-body .main-body > .container-sm > .row .es-profile-card .user-profile-body .profile-body-content ul li label,
.main-body .main-body > .container-md > .row .es-profile-card .user-profile-body .profile-body-content ul li label,
.main-body .main-body > .container-lg > .row .es-profile-card .user-profile-body .profile-body-content ul li label,
.main-body .main-body > .container-xl > .row .es-profile-card .user-profile-body .profile-body-content ul li label {
  display: block;
}
.main-content .es-page-content > .container-fluid > .row .es-widget-wrap .card-body .es-summary-top-widget, .main-content .es-page-content > .container-sm > .row .es-widget-wrap .card-body .es-summary-top-widget, .main-content .es-page-content > .container-md > .row .es-widget-wrap .card-body .es-summary-top-widget, .main-content .es-page-content > .container-lg > .row .es-widget-wrap .card-body .es-summary-top-widget, .main-content .es-page-content > .container-xl > .row .es-widget-wrap .card-body .es-summary-top-widget,
.main-content .main-body > .container-fluid > .row .es-widget-wrap .card-body .es-summary-top-widget,
.main-content .main-body > .container-sm > .row .es-widget-wrap .card-body .es-summary-top-widget,
.main-content .main-body > .container-md > .row .es-widget-wrap .card-body .es-summary-top-widget,
.main-content .main-body > .container-lg > .row .es-widget-wrap .card-body .es-summary-top-widget,
.main-content .main-body > .container-xl > .row .es-widget-wrap .card-body .es-summary-top-widget,
.main-body .es-page-content > .container-fluid > .row .es-widget-wrap .card-body .es-summary-top-widget,
.main-body .es-page-content > .container-sm > .row .es-widget-wrap .card-body .es-summary-top-widget,
.main-body .es-page-content > .container-md > .row .es-widget-wrap .card-body .es-summary-top-widget,
.main-body .es-page-content > .container-lg > .row .es-widget-wrap .card-body .es-summary-top-widget,
.main-body .es-page-content > .container-xl > .row .es-widget-wrap .card-body .es-summary-top-widget,
.main-body .main-body > .container-fluid > .row .es-widget-wrap .card-body .es-summary-top-widget,
.main-body .main-body > .container-sm > .row .es-widget-wrap .card-body .es-summary-top-widget,
.main-body .main-body > .container-md > .row .es-widget-wrap .card-body .es-summary-top-widget,
.main-body .main-body > .container-lg > .row .es-widget-wrap .card-body .es-summary-top-widget,
.main-body .main-body > .container-xl > .row .es-widget-wrap .card-body .es-summary-top-widget {
  border: 1px solid #e7e7e7;
}
.main-content .es-page-content > .container-fluid > .row .es-widget-wrap .card-body .es-section-heading, .main-content .es-page-content > .container-sm > .row .es-widget-wrap .card-body .es-section-heading, .main-content .es-page-content > .container-md > .row .es-widget-wrap .card-body .es-section-heading, .main-content .es-page-content > .container-lg > .row .es-widget-wrap .card-body .es-section-heading, .main-content .es-page-content > .container-xl > .row .es-widget-wrap .card-body .es-section-heading,
.main-content .main-body > .container-fluid > .row .es-widget-wrap .card-body .es-section-heading,
.main-content .main-body > .container-sm > .row .es-widget-wrap .card-body .es-section-heading,
.main-content .main-body > .container-md > .row .es-widget-wrap .card-body .es-section-heading,
.main-content .main-body > .container-lg > .row .es-widget-wrap .card-body .es-section-heading,
.main-content .main-body > .container-xl > .row .es-widget-wrap .card-body .es-section-heading,
.main-body .es-page-content > .container-fluid > .row .es-widget-wrap .card-body .es-section-heading,
.main-body .es-page-content > .container-sm > .row .es-widget-wrap .card-body .es-section-heading,
.main-body .es-page-content > .container-md > .row .es-widget-wrap .card-body .es-section-heading,
.main-body .es-page-content > .container-lg > .row .es-widget-wrap .card-body .es-section-heading,
.main-body .es-page-content > .container-xl > .row .es-widget-wrap .card-body .es-section-heading,
.main-body .main-body > .container-fluid > .row .es-widget-wrap .card-body .es-section-heading,
.main-body .main-body > .container-sm > .row .es-widget-wrap .card-body .es-section-heading,
.main-body .main-body > .container-md > .row .es-widget-wrap .card-body .es-section-heading,
.main-body .main-body > .container-lg > .row .es-widget-wrap .card-body .es-section-heading,
.main-body .main-body > .container-xl > .row .es-widget-wrap .card-body .es-section-heading {
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0;
  padding: 12px 0;
  margin-bottom: 15px;
}
.main-content .es-page-content > .container-fluid > .row .es-widget-wrap .card-body .es-section-heading i, .main-content .es-page-content > .container-sm > .row .es-widget-wrap .card-body .es-section-heading i, .main-content .es-page-content > .container-md > .row .es-widget-wrap .card-body .es-section-heading i, .main-content .es-page-content > .container-lg > .row .es-widget-wrap .card-body .es-section-heading i, .main-content .es-page-content > .container-xl > .row .es-widget-wrap .card-body .es-section-heading i,
.main-content .main-body > .container-fluid > .row .es-widget-wrap .card-body .es-section-heading i,
.main-content .main-body > .container-sm > .row .es-widget-wrap .card-body .es-section-heading i,
.main-content .main-body > .container-md > .row .es-widget-wrap .card-body .es-section-heading i,
.main-content .main-body > .container-lg > .row .es-widget-wrap .card-body .es-section-heading i,
.main-content .main-body > .container-xl > .row .es-widget-wrap .card-body .es-section-heading i,
.main-body .es-page-content > .container-fluid > .row .es-widget-wrap .card-body .es-section-heading i,
.main-body .es-page-content > .container-sm > .row .es-widget-wrap .card-body .es-section-heading i,
.main-body .es-page-content > .container-md > .row .es-widget-wrap .card-body .es-section-heading i,
.main-body .es-page-content > .container-lg > .row .es-widget-wrap .card-body .es-section-heading i,
.main-body .es-page-content > .container-xl > .row .es-widget-wrap .card-body .es-section-heading i,
.main-body .main-body > .container-fluid > .row .es-widget-wrap .card-body .es-section-heading i,
.main-body .main-body > .container-sm > .row .es-widget-wrap .card-body .es-section-heading i,
.main-body .main-body > .container-md > .row .es-widget-wrap .card-body .es-section-heading i,
.main-body .main-body > .container-lg > .row .es-widget-wrap .card-body .es-section-heading i,
.main-body .main-body > .container-xl > .row .es-widget-wrap .card-body .es-section-heading i {
  font-size: 16px;
}
.main-content .es-page-content > .container-fluid > .row .es-widget-wrap .card-body .es-section-heading h4, .main-content .es-page-content > .container-sm > .row .es-widget-wrap .card-body .es-section-heading h4, .main-content .es-page-content > .container-md > .row .es-widget-wrap .card-body .es-section-heading h4, .main-content .es-page-content > .container-lg > .row .es-widget-wrap .card-body .es-section-heading h4, .main-content .es-page-content > .container-xl > .row .es-widget-wrap .card-body .es-section-heading h4, .main-content .es-page-content > .container-fluid > .row .es-widget-wrap .card-body .es-section-heading .h4, .main-content .es-page-content > .container-sm > .row .es-widget-wrap .card-body .es-section-heading .h4, .main-content .es-page-content > .container-md > .row .es-widget-wrap .card-body .es-section-heading .h4, .main-content .es-page-content > .container-lg > .row .es-widget-wrap .card-body .es-section-heading .h4, .main-content .es-page-content > .container-xl > .row .es-widget-wrap .card-body .es-section-heading .h4,
.main-content .main-body > .container-fluid > .row .es-widget-wrap .card-body .es-section-heading h4,
.main-content .main-body > .container-sm > .row .es-widget-wrap .card-body .es-section-heading h4,
.main-content .main-body > .container-md > .row .es-widget-wrap .card-body .es-section-heading h4,
.main-content .main-body > .container-lg > .row .es-widget-wrap .card-body .es-section-heading h4,
.main-content .main-body > .container-xl > .row .es-widget-wrap .card-body .es-section-heading h4,
.main-content .main-body > .container-fluid > .row .es-widget-wrap .card-body .es-section-heading .h4,
.main-content .main-body > .container-sm > .row .es-widget-wrap .card-body .es-section-heading .h4,
.main-content .main-body > .container-md > .row .es-widget-wrap .card-body .es-section-heading .h4,
.main-content .main-body > .container-lg > .row .es-widget-wrap .card-body .es-section-heading .h4,
.main-content .main-body > .container-xl > .row .es-widget-wrap .card-body .es-section-heading .h4,
.main-body .es-page-content > .container-fluid > .row .es-widget-wrap .card-body .es-section-heading h4,
.main-body .es-page-content > .container-sm > .row .es-widget-wrap .card-body .es-section-heading h4,
.main-body .es-page-content > .container-md > .row .es-widget-wrap .card-body .es-section-heading h4,
.main-body .es-page-content > .container-lg > .row .es-widget-wrap .card-body .es-section-heading h4,
.main-body .es-page-content > .container-xl > .row .es-widget-wrap .card-body .es-section-heading h4,
.main-body .es-page-content > .container-fluid > .row .es-widget-wrap .card-body .es-section-heading .h4,
.main-body .es-page-content > .container-sm > .row .es-widget-wrap .card-body .es-section-heading .h4,
.main-body .es-page-content > .container-md > .row .es-widget-wrap .card-body .es-section-heading .h4,
.main-body .es-page-content > .container-lg > .row .es-widget-wrap .card-body .es-section-heading .h4,
.main-body .es-page-content > .container-xl > .row .es-widget-wrap .card-body .es-section-heading .h4,
.main-body .main-body > .container-fluid > .row .es-widget-wrap .card-body .es-section-heading h4,
.main-body .main-body > .container-sm > .row .es-widget-wrap .card-body .es-section-heading h4,
.main-body .main-body > .container-md > .row .es-widget-wrap .card-body .es-section-heading h4,
.main-body .main-body > .container-lg > .row .es-widget-wrap .card-body .es-section-heading h4,
.main-body .main-body > .container-xl > .row .es-widget-wrap .card-body .es-section-heading h4,
.main-body .main-body > .container-fluid > .row .es-widget-wrap .card-body .es-section-heading .h4,
.main-body .main-body > .container-sm > .row .es-widget-wrap .card-body .es-section-heading .h4,
.main-body .main-body > .container-md > .row .es-widget-wrap .card-body .es-section-heading .h4,
.main-body .main-body > .container-lg > .row .es-widget-wrap .card-body .es-section-heading .h4,
.main-body .main-body > .container-xl > .row .es-widget-wrap .card-body .es-section-heading .h4 {
  margin-bottom: 0px !important;
}
.main-content .es-page-content > .container-fluid > .row .es-widget-wrap .card-body .es-section-heading p, .main-content .es-page-content > .container-sm > .row .es-widget-wrap .card-body .es-section-heading p, .main-content .es-page-content > .container-md > .row .es-widget-wrap .card-body .es-section-heading p, .main-content .es-page-content > .container-lg > .row .es-widget-wrap .card-body .es-section-heading p, .main-content .es-page-content > .container-xl > .row .es-widget-wrap .card-body .es-section-heading p,
.main-content .main-body > .container-fluid > .row .es-widget-wrap .card-body .es-section-heading p,
.main-content .main-body > .container-sm > .row .es-widget-wrap .card-body .es-section-heading p,
.main-content .main-body > .container-md > .row .es-widget-wrap .card-body .es-section-heading p,
.main-content .main-body > .container-lg > .row .es-widget-wrap .card-body .es-section-heading p,
.main-content .main-body > .container-xl > .row .es-widget-wrap .card-body .es-section-heading p,
.main-body .es-page-content > .container-fluid > .row .es-widget-wrap .card-body .es-section-heading p,
.main-body .es-page-content > .container-sm > .row .es-widget-wrap .card-body .es-section-heading p,
.main-body .es-page-content > .container-md > .row .es-widget-wrap .card-body .es-section-heading p,
.main-body .es-page-content > .container-lg > .row .es-widget-wrap .card-body .es-section-heading p,
.main-body .es-page-content > .container-xl > .row .es-widget-wrap .card-body .es-section-heading p,
.main-body .main-body > .container-fluid > .row .es-widget-wrap .card-body .es-section-heading p,
.main-body .main-body > .container-sm > .row .es-widget-wrap .card-body .es-section-heading p,
.main-body .main-body > .container-md > .row .es-widget-wrap .card-body .es-section-heading p,
.main-body .main-body > .container-lg > .row .es-widget-wrap .card-body .es-section-heading p,
.main-body .main-body > .container-xl > .row .es-widget-wrap .card-body .es-section-heading p {
  margin-bottom: 0px;
}
.main-content .es-page-content > .container-fluid > .row .es-widget-wrap .card-body .es-section-heading a, .main-content .es-page-content > .container-sm > .row .es-widget-wrap .card-body .es-section-heading a, .main-content .es-page-content > .container-md > .row .es-widget-wrap .card-body .es-section-heading a, .main-content .es-page-content > .container-lg > .row .es-widget-wrap .card-body .es-section-heading a, .main-content .es-page-content > .container-xl > .row .es-widget-wrap .card-body .es-section-heading a,
.main-content .main-body > .container-fluid > .row .es-widget-wrap .card-body .es-section-heading a,
.main-content .main-body > .container-sm > .row .es-widget-wrap .card-body .es-section-heading a,
.main-content .main-body > .container-md > .row .es-widget-wrap .card-body .es-section-heading a,
.main-content .main-body > .container-lg > .row .es-widget-wrap .card-body .es-section-heading a,
.main-content .main-body > .container-xl > .row .es-widget-wrap .card-body .es-section-heading a,
.main-body .es-page-content > .container-fluid > .row .es-widget-wrap .card-body .es-section-heading a,
.main-body .es-page-content > .container-sm > .row .es-widget-wrap .card-body .es-section-heading a,
.main-body .es-page-content > .container-md > .row .es-widget-wrap .card-body .es-section-heading a,
.main-body .es-page-content > .container-lg > .row .es-widget-wrap .card-body .es-section-heading a,
.main-body .es-page-content > .container-xl > .row .es-widget-wrap .card-body .es-section-heading a,
.main-body .main-body > .container-fluid > .row .es-widget-wrap .card-body .es-section-heading a,
.main-body .main-body > .container-sm > .row .es-widget-wrap .card-body .es-section-heading a,
.main-body .main-body > .container-md > .row .es-widget-wrap .card-body .es-section-heading a,
.main-body .main-body > .container-lg > .row .es-widget-wrap .card-body .es-section-heading a,
.main-body .main-body > .container-xl > .row .es-widget-wrap .card-body .es-section-heading a {
  text-decoration: none;
}
.main-content .es-page-content > .container-fluid > .row .es-widget-wrap .card-body .es-section-heading .es-icons, .main-content .es-page-content > .container-sm > .row .es-widget-wrap .card-body .es-section-heading .es-icons, .main-content .es-page-content > .container-md > .row .es-widget-wrap .card-body .es-section-heading .es-icons, .main-content .es-page-content > .container-lg > .row .es-widget-wrap .card-body .es-section-heading .es-icons, .main-content .es-page-content > .container-xl > .row .es-widget-wrap .card-body .es-section-heading .es-icons,
.main-content .main-body > .container-fluid > .row .es-widget-wrap .card-body .es-section-heading .es-icons,
.main-content .main-body > .container-sm > .row .es-widget-wrap .card-body .es-section-heading .es-icons,
.main-content .main-body > .container-md > .row .es-widget-wrap .card-body .es-section-heading .es-icons,
.main-content .main-body > .container-lg > .row .es-widget-wrap .card-body .es-section-heading .es-icons,
.main-content .main-body > .container-xl > .row .es-widget-wrap .card-body .es-section-heading .es-icons,
.main-body .es-page-content > .container-fluid > .row .es-widget-wrap .card-body .es-section-heading .es-icons,
.main-body .es-page-content > .container-sm > .row .es-widget-wrap .card-body .es-section-heading .es-icons,
.main-body .es-page-content > .container-md > .row .es-widget-wrap .card-body .es-section-heading .es-icons,
.main-body .es-page-content > .container-lg > .row .es-widget-wrap .card-body .es-section-heading .es-icons,
.main-body .es-page-content > .container-xl > .row .es-widget-wrap .card-body .es-section-heading .es-icons,
.main-body .main-body > .container-fluid > .row .es-widget-wrap .card-body .es-section-heading .es-icons,
.main-body .main-body > .container-sm > .row .es-widget-wrap .card-body .es-section-heading .es-icons,
.main-body .main-body > .container-md > .row .es-widget-wrap .card-body .es-section-heading .es-icons,
.main-body .main-body > .container-lg > .row .es-widget-wrap .card-body .es-section-heading .es-icons,
.main-body .main-body > .container-xl > .row .es-widget-wrap .card-body .es-section-heading .es-icons {
  border: 1px solid #ccc;
  width: 32px;
  height: 32px;
  display: inline-block;
  padding: 5px;
  line-height: 22px;
  text-align: center;
}
.main-content .es-page-content > .container-fluid > .row .es-widget-wrap .card-body .es-section-heading .es-icons i, .main-content .es-page-content > .container-sm > .row .es-widget-wrap .card-body .es-section-heading .es-icons i, .main-content .es-page-content > .container-md > .row .es-widget-wrap .card-body .es-section-heading .es-icons i, .main-content .es-page-content > .container-lg > .row .es-widget-wrap .card-body .es-section-heading .es-icons i, .main-content .es-page-content > .container-xl > .row .es-widget-wrap .card-body .es-section-heading .es-icons i,
.main-content .main-body > .container-fluid > .row .es-widget-wrap .card-body .es-section-heading .es-icons i,
.main-content .main-body > .container-sm > .row .es-widget-wrap .card-body .es-section-heading .es-icons i,
.main-content .main-body > .container-md > .row .es-widget-wrap .card-body .es-section-heading .es-icons i,
.main-content .main-body > .container-lg > .row .es-widget-wrap .card-body .es-section-heading .es-icons i,
.main-content .main-body > .container-xl > .row .es-widget-wrap .card-body .es-section-heading .es-icons i,
.main-body .es-page-content > .container-fluid > .row .es-widget-wrap .card-body .es-section-heading .es-icons i,
.main-body .es-page-content > .container-sm > .row .es-widget-wrap .card-body .es-section-heading .es-icons i,
.main-body .es-page-content > .container-md > .row .es-widget-wrap .card-body .es-section-heading .es-icons i,
.main-body .es-page-content > .container-lg > .row .es-widget-wrap .card-body .es-section-heading .es-icons i,
.main-body .es-page-content > .container-xl > .row .es-widget-wrap .card-body .es-section-heading .es-icons i,
.main-body .main-body > .container-fluid > .row .es-widget-wrap .card-body .es-section-heading .es-icons i,
.main-body .main-body > .container-sm > .row .es-widget-wrap .card-body .es-section-heading .es-icons i,
.main-body .main-body > .container-md > .row .es-widget-wrap .card-body .es-section-heading .es-icons i,
.main-body .main-body > .container-lg > .row .es-widget-wrap .card-body .es-section-heading .es-icons i,
.main-body .main-body > .container-xl > .row .es-widget-wrap .card-body .es-section-heading .es-icons i {
  font-size: 18px;
}
.main-content .es-page-content > .container-fluid > .row .es-widget-wrap .card-body .es-section-heading .es-icons:hover, .main-content .es-page-content > .container-sm > .row .es-widget-wrap .card-body .es-section-heading .es-icons:hover, .main-content .es-page-content > .container-md > .row .es-widget-wrap .card-body .es-section-heading .es-icons:hover, .main-content .es-page-content > .container-lg > .row .es-widget-wrap .card-body .es-section-heading .es-icons:hover, .main-content .es-page-content > .container-xl > .row .es-widget-wrap .card-body .es-section-heading .es-icons:hover,
.main-content .main-body > .container-fluid > .row .es-widget-wrap .card-body .es-section-heading .es-icons:hover,
.main-content .main-body > .container-sm > .row .es-widget-wrap .card-body .es-section-heading .es-icons:hover,
.main-content .main-body > .container-md > .row .es-widget-wrap .card-body .es-section-heading .es-icons:hover,
.main-content .main-body > .container-lg > .row .es-widget-wrap .card-body .es-section-heading .es-icons:hover,
.main-content .main-body > .container-xl > .row .es-widget-wrap .card-body .es-section-heading .es-icons:hover,
.main-body .es-page-content > .container-fluid > .row .es-widget-wrap .card-body .es-section-heading .es-icons:hover,
.main-body .es-page-content > .container-sm > .row .es-widget-wrap .card-body .es-section-heading .es-icons:hover,
.main-body .es-page-content > .container-md > .row .es-widget-wrap .card-body .es-section-heading .es-icons:hover,
.main-body .es-page-content > .container-lg > .row .es-widget-wrap .card-body .es-section-heading .es-icons:hover,
.main-body .es-page-content > .container-xl > .row .es-widget-wrap .card-body .es-section-heading .es-icons:hover,
.main-body .main-body > .container-fluid > .row .es-widget-wrap .card-body .es-section-heading .es-icons:hover,
.main-body .main-body > .container-sm > .row .es-widget-wrap .card-body .es-section-heading .es-icons:hover,
.main-body .main-body > .container-md > .row .es-widget-wrap .card-body .es-section-heading .es-icons:hover,
.main-body .main-body > .container-lg > .row .es-widget-wrap .card-body .es-section-heading .es-icons:hover,
.main-body .main-body > .container-xl > .row .es-widget-wrap .card-body .es-section-heading .es-icons:hover {
  border-color: #F7813D;
}
.main-content .es-page-content > .container-fluid > .row .es-widget-wrap .card-body .es-section-heading .es-icons:hover i, .main-content .es-page-content > .container-sm > .row .es-widget-wrap .card-body .es-section-heading .es-icons:hover i, .main-content .es-page-content > .container-md > .row .es-widget-wrap .card-body .es-section-heading .es-icons:hover i, .main-content .es-page-content > .container-lg > .row .es-widget-wrap .card-body .es-section-heading .es-icons:hover i, .main-content .es-page-content > .container-xl > .row .es-widget-wrap .card-body .es-section-heading .es-icons:hover i,
.main-content .main-body > .container-fluid > .row .es-widget-wrap .card-body .es-section-heading .es-icons:hover i,
.main-content .main-body > .container-sm > .row .es-widget-wrap .card-body .es-section-heading .es-icons:hover i,
.main-content .main-body > .container-md > .row .es-widget-wrap .card-body .es-section-heading .es-icons:hover i,
.main-content .main-body > .container-lg > .row .es-widget-wrap .card-body .es-section-heading .es-icons:hover i,
.main-content .main-body > .container-xl > .row .es-widget-wrap .card-body .es-section-heading .es-icons:hover i,
.main-body .es-page-content > .container-fluid > .row .es-widget-wrap .card-body .es-section-heading .es-icons:hover i,
.main-body .es-page-content > .container-sm > .row .es-widget-wrap .card-body .es-section-heading .es-icons:hover i,
.main-body .es-page-content > .container-md > .row .es-widget-wrap .card-body .es-section-heading .es-icons:hover i,
.main-body .es-page-content > .container-lg > .row .es-widget-wrap .card-body .es-section-heading .es-icons:hover i,
.main-body .es-page-content > .container-xl > .row .es-widget-wrap .card-body .es-section-heading .es-icons:hover i,
.main-body .main-body > .container-fluid > .row .es-widget-wrap .card-body .es-section-heading .es-icons:hover i,
.main-body .main-body > .container-sm > .row .es-widget-wrap .card-body .es-section-heading .es-icons:hover i,
.main-body .main-body > .container-md > .row .es-widget-wrap .card-body .es-section-heading .es-icons:hover i,
.main-body .main-body > .container-lg > .row .es-widget-wrap .card-body .es-section-heading .es-icons:hover i,
.main-body .main-body > .container-xl > .row .es-widget-wrap .card-body .es-section-heading .es-icons:hover i {
  color: #f7813d;
}
.main-content .es-page-content > .container-fluid > .row .es-widget-wrap .card-body .es-action-cards .info-card .info-card-content table, .main-content .es-page-content > .container-sm > .row .es-widget-wrap .card-body .es-action-cards .info-card .info-card-content table, .main-content .es-page-content > .container-md > .row .es-widget-wrap .card-body .es-action-cards .info-card .info-card-content table, .main-content .es-page-content > .container-lg > .row .es-widget-wrap .card-body .es-action-cards .info-card .info-card-content table, .main-content .es-page-content > .container-xl > .row .es-widget-wrap .card-body .es-action-cards .info-card .info-card-content table,
.main-content .main-body > .container-fluid > .row .es-widget-wrap .card-body .es-action-cards .info-card .info-card-content table,
.main-content .main-body > .container-sm > .row .es-widget-wrap .card-body .es-action-cards .info-card .info-card-content table,
.main-content .main-body > .container-md > .row .es-widget-wrap .card-body .es-action-cards .info-card .info-card-content table,
.main-content .main-body > .container-lg > .row .es-widget-wrap .card-body .es-action-cards .info-card .info-card-content table,
.main-content .main-body > .container-xl > .row .es-widget-wrap .card-body .es-action-cards .info-card .info-card-content table,
.main-body .es-page-content > .container-fluid > .row .es-widget-wrap .card-body .es-action-cards .info-card .info-card-content table,
.main-body .es-page-content > .container-sm > .row .es-widget-wrap .card-body .es-action-cards .info-card .info-card-content table,
.main-body .es-page-content > .container-md > .row .es-widget-wrap .card-body .es-action-cards .info-card .info-card-content table,
.main-body .es-page-content > .container-lg > .row .es-widget-wrap .card-body .es-action-cards .info-card .info-card-content table,
.main-body .es-page-content > .container-xl > .row .es-widget-wrap .card-body .es-action-cards .info-card .info-card-content table,
.main-body .main-body > .container-fluid > .row .es-widget-wrap .card-body .es-action-cards .info-card .info-card-content table,
.main-body .main-body > .container-sm > .row .es-widget-wrap .card-body .es-action-cards .info-card .info-card-content table,
.main-body .main-body > .container-md > .row .es-widget-wrap .card-body .es-action-cards .info-card .info-card-content table,
.main-body .main-body > .container-lg > .row .es-widget-wrap .card-body .es-action-cards .info-card .info-card-content table,
.main-body .main-body > .container-xl > .row .es-widget-wrap .card-body .es-action-cards .info-card .info-card-content table {
  width: 100%;
}
.main-content .es-page-content > .container-fluid > .row .es-widget-wrap .widget-card, .main-content .es-page-content > .container-sm > .row .es-widget-wrap .widget-card, .main-content .es-page-content > .container-md > .row .es-widget-wrap .widget-card, .main-content .es-page-content > .container-lg > .row .es-widget-wrap .widget-card, .main-content .es-page-content > .container-xl > .row .es-widget-wrap .widget-card,
.main-content .main-body > .container-fluid > .row .es-widget-wrap .widget-card,
.main-content .main-body > .container-sm > .row .es-widget-wrap .widget-card,
.main-content .main-body > .container-md > .row .es-widget-wrap .widget-card,
.main-content .main-body > .container-lg > .row .es-widget-wrap .widget-card,
.main-content .main-body > .container-xl > .row .es-widget-wrap .widget-card,
.main-body .es-page-content > .container-fluid > .row .es-widget-wrap .widget-card,
.main-body .es-page-content > .container-sm > .row .es-widget-wrap .widget-card,
.main-body .es-page-content > .container-md > .row .es-widget-wrap .widget-card,
.main-body .es-page-content > .container-lg > .row .es-widget-wrap .widget-card,
.main-body .es-page-content > .container-xl > .row .es-widget-wrap .widget-card,
.main-body .main-body > .container-fluid > .row .es-widget-wrap .widget-card,
.main-body .main-body > .container-sm > .row .es-widget-wrap .widget-card,
.main-body .main-body > .container-md > .row .es-widget-wrap .widget-card,
.main-body .main-body > .container-lg > .row .es-widget-wrap .widget-card,
.main-body .main-body > .container-xl > .row .es-widget-wrap .widget-card {
  border-radius: 2px;
  padding: 10px;
  height: calc(100% - 20px);
  border: 1px solid #dee2e6;
  margin-bottom: 12px;
  min-height: 148px;
}
@media only screen and (max-width: 1440px) {
  .main-content .es-page-content > .container-fluid > .row .es-widget-wrap .widget-card, .main-content .es-page-content > .container-sm > .row .es-widget-wrap .widget-card, .main-content .es-page-content > .container-md > .row .es-widget-wrap .widget-card, .main-content .es-page-content > .container-lg > .row .es-widget-wrap .widget-card, .main-content .es-page-content > .container-xl > .row .es-widget-wrap .widget-card,
  .main-content .main-body > .container-fluid > .row .es-widget-wrap .widget-card,
  .main-content .main-body > .container-sm > .row .es-widget-wrap .widget-card,
  .main-content .main-body > .container-md > .row .es-widget-wrap .widget-card,
  .main-content .main-body > .container-lg > .row .es-widget-wrap .widget-card,
  .main-content .main-body > .container-xl > .row .es-widget-wrap .widget-card,
  .main-body .es-page-content > .container-fluid > .row .es-widget-wrap .widget-card,
  .main-body .es-page-content > .container-sm > .row .es-widget-wrap .widget-card,
  .main-body .es-page-content > .container-md > .row .es-widget-wrap .widget-card,
  .main-body .es-page-content > .container-lg > .row .es-widget-wrap .widget-card,
  .main-body .es-page-content > .container-xl > .row .es-widget-wrap .widget-card,
  .main-body .main-body > .container-fluid > .row .es-widget-wrap .widget-card,
  .main-body .main-body > .container-sm > .row .es-widget-wrap .widget-card,
  .main-body .main-body > .container-md > .row .es-widget-wrap .widget-card,
  .main-body .main-body > .container-lg > .row .es-widget-wrap .widget-card,
  .main-body .main-body > .container-xl > .row .es-widget-wrap .widget-card {
    padding: 10px;
  }
}
.main-content .es-page-content > .container-fluid > .row .es-widget-wrap .widget-card h4, .main-content .es-page-content > .container-sm > .row .es-widget-wrap .widget-card h4, .main-content .es-page-content > .container-md > .row .es-widget-wrap .widget-card h4, .main-content .es-page-content > .container-lg > .row .es-widget-wrap .widget-card h4, .main-content .es-page-content > .container-xl > .row .es-widget-wrap .widget-card h4, .main-content .es-page-content > .container-fluid > .row .es-widget-wrap .widget-card .h4, .main-content .es-page-content > .container-sm > .row .es-widget-wrap .widget-card .h4, .main-content .es-page-content > .container-md > .row .es-widget-wrap .widget-card .h4, .main-content .es-page-content > .container-lg > .row .es-widget-wrap .widget-card .h4, .main-content .es-page-content > .container-xl > .row .es-widget-wrap .widget-card .h4,
.main-content .main-body > .container-fluid > .row .es-widget-wrap .widget-card h4,
.main-content .main-body > .container-sm > .row .es-widget-wrap .widget-card h4,
.main-content .main-body > .container-md > .row .es-widget-wrap .widget-card h4,
.main-content .main-body > .container-lg > .row .es-widget-wrap .widget-card h4,
.main-content .main-body > .container-xl > .row .es-widget-wrap .widget-card h4,
.main-content .main-body > .container-fluid > .row .es-widget-wrap .widget-card .h4,
.main-content .main-body > .container-sm > .row .es-widget-wrap .widget-card .h4,
.main-content .main-body > .container-md > .row .es-widget-wrap .widget-card .h4,
.main-content .main-body > .container-lg > .row .es-widget-wrap .widget-card .h4,
.main-content .main-body > .container-xl > .row .es-widget-wrap .widget-card .h4,
.main-body .es-page-content > .container-fluid > .row .es-widget-wrap .widget-card h4,
.main-body .es-page-content > .container-sm > .row .es-widget-wrap .widget-card h4,
.main-body .es-page-content > .container-md > .row .es-widget-wrap .widget-card h4,
.main-body .es-page-content > .container-lg > .row .es-widget-wrap .widget-card h4,
.main-body .es-page-content > .container-xl > .row .es-widget-wrap .widget-card h4,
.main-body .es-page-content > .container-fluid > .row .es-widget-wrap .widget-card .h4,
.main-body .es-page-content > .container-sm > .row .es-widget-wrap .widget-card .h4,
.main-body .es-page-content > .container-md > .row .es-widget-wrap .widget-card .h4,
.main-body .es-page-content > .container-lg > .row .es-widget-wrap .widget-card .h4,
.main-body .es-page-content > .container-xl > .row .es-widget-wrap .widget-card .h4,
.main-body .main-body > .container-fluid > .row .es-widget-wrap .widget-card h4,
.main-body .main-body > .container-sm > .row .es-widget-wrap .widget-card h4,
.main-body .main-body > .container-md > .row .es-widget-wrap .widget-card h4,
.main-body .main-body > .container-lg > .row .es-widget-wrap .widget-card h4,
.main-body .main-body > .container-xl > .row .es-widget-wrap .widget-card h4,
.main-body .main-body > .container-fluid > .row .es-widget-wrap .widget-card .h4,
.main-body .main-body > .container-sm > .row .es-widget-wrap .widget-card .h4,
.main-body .main-body > .container-md > .row .es-widget-wrap .widget-card .h4,
.main-body .main-body > .container-lg > .row .es-widget-wrap .widget-card .h4,
.main-body .main-body > .container-xl > .row .es-widget-wrap .widget-card .h4 {
  margin-bottom: 0;
  font-weight: normal;
  color: #343a40;
  margin-bottom: 6px;
  font-size: 16px;
}
.main-content .es-page-content > .container-fluid > .row .es-widget-wrap .widget-card > span, .main-content .es-page-content > .container-sm > .row .es-widget-wrap .widget-card > span, .main-content .es-page-content > .container-md > .row .es-widget-wrap .widget-card > span, .main-content .es-page-content > .container-lg > .row .es-widget-wrap .widget-card > span, .main-content .es-page-content > .container-xl > .row .es-widget-wrap .widget-card > span,
.main-content .main-body > .container-fluid > .row .es-widget-wrap .widget-card > span,
.main-content .main-body > .container-sm > .row .es-widget-wrap .widget-card > span,
.main-content .main-body > .container-md > .row .es-widget-wrap .widget-card > span,
.main-content .main-body > .container-lg > .row .es-widget-wrap .widget-card > span,
.main-content .main-body > .container-xl > .row .es-widget-wrap .widget-card > span,
.main-body .es-page-content > .container-fluid > .row .es-widget-wrap .widget-card > span,
.main-body .es-page-content > .container-sm > .row .es-widget-wrap .widget-card > span,
.main-body .es-page-content > .container-md > .row .es-widget-wrap .widget-card > span,
.main-body .es-page-content > .container-lg > .row .es-widget-wrap .widget-card > span,
.main-body .es-page-content > .container-xl > .row .es-widget-wrap .widget-card > span,
.main-body .main-body > .container-fluid > .row .es-widget-wrap .widget-card > span,
.main-body .main-body > .container-sm > .row .es-widget-wrap .widget-card > span,
.main-body .main-body > .container-md > .row .es-widget-wrap .widget-card > span,
.main-body .main-body > .container-lg > .row .es-widget-wrap .widget-card > span,
.main-body .main-body > .container-xl > .row .es-widget-wrap .widget-card > span {
  font-size: 13px;
}
.main-content .es-page-content > .container-fluid > .row .es-widget-wrap .widget-card ul, .main-content .es-page-content > .container-sm > .row .es-widget-wrap .widget-card ul, .main-content .es-page-content > .container-md > .row .es-widget-wrap .widget-card ul, .main-content .es-page-content > .container-lg > .row .es-widget-wrap .widget-card ul, .main-content .es-page-content > .container-xl > .row .es-widget-wrap .widget-card ul,
.main-content .main-body > .container-fluid > .row .es-widget-wrap .widget-card ul,
.main-content .main-body > .container-sm > .row .es-widget-wrap .widget-card ul,
.main-content .main-body > .container-md > .row .es-widget-wrap .widget-card ul,
.main-content .main-body > .container-lg > .row .es-widget-wrap .widget-card ul,
.main-content .main-body > .container-xl > .row .es-widget-wrap .widget-card ul,
.main-body .es-page-content > .container-fluid > .row .es-widget-wrap .widget-card ul,
.main-body .es-page-content > .container-sm > .row .es-widget-wrap .widget-card ul,
.main-body .es-page-content > .container-md > .row .es-widget-wrap .widget-card ul,
.main-body .es-page-content > .container-lg > .row .es-widget-wrap .widget-card ul,
.main-body .es-page-content > .container-xl > .row .es-widget-wrap .widget-card ul,
.main-body .main-body > .container-fluid > .row .es-widget-wrap .widget-card ul,
.main-body .main-body > .container-sm > .row .es-widget-wrap .widget-card ul,
.main-body .main-body > .container-md > .row .es-widget-wrap .widget-card ul,
.main-body .main-body > .container-lg > .row .es-widget-wrap .widget-card ul,
.main-body .main-body > .container-xl > .row .es-widget-wrap .widget-card ul {
  padding: 0;
  list-style: none;
  margin: 0 -10px;
  display: flex;
  flex-wrap: wrap;
}
.main-content .es-page-content > .container-fluid > .row .es-widget-wrap .widget-card ul li, .main-content .es-page-content > .container-sm > .row .es-widget-wrap .widget-card ul li, .main-content .es-page-content > .container-md > .row .es-widget-wrap .widget-card ul li, .main-content .es-page-content > .container-lg > .row .es-widget-wrap .widget-card ul li, .main-content .es-page-content > .container-xl > .row .es-widget-wrap .widget-card ul li,
.main-content .main-body > .container-fluid > .row .es-widget-wrap .widget-card ul li,
.main-content .main-body > .container-sm > .row .es-widget-wrap .widget-card ul li,
.main-content .main-body > .container-md > .row .es-widget-wrap .widget-card ul li,
.main-content .main-body > .container-lg > .row .es-widget-wrap .widget-card ul li,
.main-content .main-body > .container-xl > .row .es-widget-wrap .widget-card ul li,
.main-body .es-page-content > .container-fluid > .row .es-widget-wrap .widget-card ul li,
.main-body .es-page-content > .container-sm > .row .es-widget-wrap .widget-card ul li,
.main-body .es-page-content > .container-md > .row .es-widget-wrap .widget-card ul li,
.main-body .es-page-content > .container-lg > .row .es-widget-wrap .widget-card ul li,
.main-body .es-page-content > .container-xl > .row .es-widget-wrap .widget-card ul li,
.main-body .main-body > .container-fluid > .row .es-widget-wrap .widget-card ul li,
.main-body .main-body > .container-sm > .row .es-widget-wrap .widget-card ul li,
.main-body .main-body > .container-md > .row .es-widget-wrap .widget-card ul li,
.main-body .main-body > .container-lg > .row .es-widget-wrap .widget-card ul li,
.main-body .main-body > .container-xl > .row .es-widget-wrap .widget-card ul li {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  padding: 0 10px;
  margin-top: 10px;
}
@media only screen and (max-width: 1280px) {
  .main-content .es-page-content > .container-fluid > .row .es-widget-wrap .widget-card ul li, .main-content .es-page-content > .container-sm > .row .es-widget-wrap .widget-card ul li, .main-content .es-page-content > .container-md > .row .es-widget-wrap .widget-card ul li, .main-content .es-page-content > .container-lg > .row .es-widget-wrap .widget-card ul li, .main-content .es-page-content > .container-xl > .row .es-widget-wrap .widget-card ul li,
  .main-content .main-body > .container-fluid > .row .es-widget-wrap .widget-card ul li,
  .main-content .main-body > .container-sm > .row .es-widget-wrap .widget-card ul li,
  .main-content .main-body > .container-md > .row .es-widget-wrap .widget-card ul li,
  .main-content .main-body > .container-lg > .row .es-widget-wrap .widget-card ul li,
  .main-content .main-body > .container-xl > .row .es-widget-wrap .widget-card ul li,
  .main-body .es-page-content > .container-fluid > .row .es-widget-wrap .widget-card ul li,
  .main-body .es-page-content > .container-sm > .row .es-widget-wrap .widget-card ul li,
  .main-body .es-page-content > .container-md > .row .es-widget-wrap .widget-card ul li,
  .main-body .es-page-content > .container-lg > .row .es-widget-wrap .widget-card ul li,
  .main-body .es-page-content > .container-xl > .row .es-widget-wrap .widget-card ul li,
  .main-body .main-body > .container-fluid > .row .es-widget-wrap .widget-card ul li,
  .main-body .main-body > .container-sm > .row .es-widget-wrap .widget-card ul li,
  .main-body .main-body > .container-md > .row .es-widget-wrap .widget-card ul li,
  .main-body .main-body > .container-lg > .row .es-widget-wrap .widget-card ul li,
  .main-body .main-body > .container-xl > .row .es-widget-wrap .widget-card ul li {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media only screen and (max-width: 1024px) {
  .main-content .es-page-content > .container-fluid > .row .es-widget-wrap .widget-card ul li, .main-content .es-page-content > .container-sm > .row .es-widget-wrap .widget-card ul li, .main-content .es-page-content > .container-md > .row .es-widget-wrap .widget-card ul li, .main-content .es-page-content > .container-lg > .row .es-widget-wrap .widget-card ul li, .main-content .es-page-content > .container-xl > .row .es-widget-wrap .widget-card ul li,
  .main-content .main-body > .container-fluid > .row .es-widget-wrap .widget-card ul li,
  .main-content .main-body > .container-sm > .row .es-widget-wrap .widget-card ul li,
  .main-content .main-body > .container-md > .row .es-widget-wrap .widget-card ul li,
  .main-content .main-body > .container-lg > .row .es-widget-wrap .widget-card ul li,
  .main-content .main-body > .container-xl > .row .es-widget-wrap .widget-card ul li,
  .main-body .es-page-content > .container-fluid > .row .es-widget-wrap .widget-card ul li,
  .main-body .es-page-content > .container-sm > .row .es-widget-wrap .widget-card ul li,
  .main-body .es-page-content > .container-md > .row .es-widget-wrap .widget-card ul li,
  .main-body .es-page-content > .container-lg > .row .es-widget-wrap .widget-card ul li,
  .main-body .es-page-content > .container-xl > .row .es-widget-wrap .widget-card ul li,
  .main-body .main-body > .container-fluid > .row .es-widget-wrap .widget-card ul li,
  .main-body .main-body > .container-sm > .row .es-widget-wrap .widget-card ul li,
  .main-body .main-body > .container-md > .row .es-widget-wrap .widget-card ul li,
  .main-body .main-body > .container-lg > .row .es-widget-wrap .widget-card ul li,
  .main-body .main-body > .container-xl > .row .es-widget-wrap .widget-card ul li {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.main-content .es-page-content > .container-fluid > .row .es-widget-wrap .widget-card ul li label, .main-content .es-page-content > .container-sm > .row .es-widget-wrap .widget-card ul li label, .main-content .es-page-content > .container-md > .row .es-widget-wrap .widget-card ul li label, .main-content .es-page-content > .container-lg > .row .es-widget-wrap .widget-card ul li label, .main-content .es-page-content > .container-xl > .row .es-widget-wrap .widget-card ul li label,
.main-content .main-body > .container-fluid > .row .es-widget-wrap .widget-card ul li label,
.main-content .main-body > .container-sm > .row .es-widget-wrap .widget-card ul li label,
.main-content .main-body > .container-md > .row .es-widget-wrap .widget-card ul li label,
.main-content .main-body > .container-lg > .row .es-widget-wrap .widget-card ul li label,
.main-content .main-body > .container-xl > .row .es-widget-wrap .widget-card ul li label,
.main-body .es-page-content > .container-fluid > .row .es-widget-wrap .widget-card ul li label,
.main-body .es-page-content > .container-sm > .row .es-widget-wrap .widget-card ul li label,
.main-body .es-page-content > .container-md > .row .es-widget-wrap .widget-card ul li label,
.main-body .es-page-content > .container-lg > .row .es-widget-wrap .widget-card ul li label,
.main-body .es-page-content > .container-xl > .row .es-widget-wrap .widget-card ul li label,
.main-body .main-body > .container-fluid > .row .es-widget-wrap .widget-card ul li label,
.main-body .main-body > .container-sm > .row .es-widget-wrap .widget-card ul li label,
.main-body .main-body > .container-md > .row .es-widget-wrap .widget-card ul li label,
.main-body .main-body > .container-lg > .row .es-widget-wrap .widget-card ul li label,
.main-body .main-body > .container-xl > .row .es-widget-wrap .widget-card ul li label {
  font-size: 13px;
  color: #343a40;
  width: 100%;
}
.main-content .es-page-content > .container-fluid > .row .es-widget-wrap .widget-card ul li span, .main-content .es-page-content > .container-sm > .row .es-widget-wrap .widget-card ul li span, .main-content .es-page-content > .container-md > .row .es-widget-wrap .widget-card ul li span, .main-content .es-page-content > .container-lg > .row .es-widget-wrap .widget-card ul li span, .main-content .es-page-content > .container-xl > .row .es-widget-wrap .widget-card ul li span,
.main-content .main-body > .container-fluid > .row .es-widget-wrap .widget-card ul li span,
.main-content .main-body > .container-sm > .row .es-widget-wrap .widget-card ul li span,
.main-content .main-body > .container-md > .row .es-widget-wrap .widget-card ul li span,
.main-content .main-body > .container-lg > .row .es-widget-wrap .widget-card ul li span,
.main-content .main-body > .container-xl > .row .es-widget-wrap .widget-card ul li span,
.main-body .es-page-content > .container-fluid > .row .es-widget-wrap .widget-card ul li span,
.main-body .es-page-content > .container-sm > .row .es-widget-wrap .widget-card ul li span,
.main-body .es-page-content > .container-md > .row .es-widget-wrap .widget-card ul li span,
.main-body .es-page-content > .container-lg > .row .es-widget-wrap .widget-card ul li span,
.main-body .es-page-content > .container-xl > .row .es-widget-wrap .widget-card ul li span,
.main-body .main-body > .container-fluid > .row .es-widget-wrap .widget-card ul li span,
.main-body .main-body > .container-sm > .row .es-widget-wrap .widget-card ul li span,
.main-body .main-body > .container-md > .row .es-widget-wrap .widget-card ul li span,
.main-body .main-body > .container-lg > .row .es-widget-wrap .widget-card ul li span,
.main-body .main-body > .container-xl > .row .es-widget-wrap .widget-card ul li span {
  font-size: 11px;
}
.main-content .es-page-content > .container-fluid > .row .es-widget-wrap .widget-card ul li span small, .main-content .es-page-content > .container-sm > .row .es-widget-wrap .widget-card ul li span small, .main-content .es-page-content > .container-md > .row .es-widget-wrap .widget-card ul li span small, .main-content .es-page-content > .container-lg > .row .es-widget-wrap .widget-card ul li span small, .main-content .es-page-content > .container-xl > .row .es-widget-wrap .widget-card ul li span small, .main-content .es-page-content > .container-fluid > .row .es-widget-wrap .widget-card ul li span .small, .main-content .es-page-content > .container-sm > .row .es-widget-wrap .widget-card ul li span .small, .main-content .es-page-content > .container-md > .row .es-widget-wrap .widget-card ul li span .small, .main-content .es-page-content > .container-lg > .row .es-widget-wrap .widget-card ul li span .small, .main-content .es-page-content > .container-xl > .row .es-widget-wrap .widget-card ul li span .small,
.main-content .main-body > .container-fluid > .row .es-widget-wrap .widget-card ul li span small,
.main-content .main-body > .container-sm > .row .es-widget-wrap .widget-card ul li span small,
.main-content .main-body > .container-md > .row .es-widget-wrap .widget-card ul li span small,
.main-content .main-body > .container-lg > .row .es-widget-wrap .widget-card ul li span small,
.main-content .main-body > .container-xl > .row .es-widget-wrap .widget-card ul li span small,
.main-content .main-body > .container-fluid > .row .es-widget-wrap .widget-card ul li span .small,
.main-content .main-body > .container-sm > .row .es-widget-wrap .widget-card ul li span .small,
.main-content .main-body > .container-md > .row .es-widget-wrap .widget-card ul li span .small,
.main-content .main-body > .container-lg > .row .es-widget-wrap .widget-card ul li span .small,
.main-content .main-body > .container-xl > .row .es-widget-wrap .widget-card ul li span .small,
.main-body .es-page-content > .container-fluid > .row .es-widget-wrap .widget-card ul li span small,
.main-body .es-page-content > .container-sm > .row .es-widget-wrap .widget-card ul li span small,
.main-body .es-page-content > .container-md > .row .es-widget-wrap .widget-card ul li span small,
.main-body .es-page-content > .container-lg > .row .es-widget-wrap .widget-card ul li span small,
.main-body .es-page-content > .container-xl > .row .es-widget-wrap .widget-card ul li span small,
.main-body .es-page-content > .container-fluid > .row .es-widget-wrap .widget-card ul li span .small,
.main-body .es-page-content > .container-sm > .row .es-widget-wrap .widget-card ul li span .small,
.main-body .es-page-content > .container-md > .row .es-widget-wrap .widget-card ul li span .small,
.main-body .es-page-content > .container-lg > .row .es-widget-wrap .widget-card ul li span .small,
.main-body .es-page-content > .container-xl > .row .es-widget-wrap .widget-card ul li span .small,
.main-body .main-body > .container-fluid > .row .es-widget-wrap .widget-card ul li span small,
.main-body .main-body > .container-sm > .row .es-widget-wrap .widget-card ul li span small,
.main-body .main-body > .container-md > .row .es-widget-wrap .widget-card ul li span small,
.main-body .main-body > .container-lg > .row .es-widget-wrap .widget-card ul li span small,
.main-body .main-body > .container-xl > .row .es-widget-wrap .widget-card ul li span small,
.main-body .main-body > .container-fluid > .row .es-widget-wrap .widget-card ul li span .small,
.main-body .main-body > .container-sm > .row .es-widget-wrap .widget-card ul li span .small,
.main-body .main-body > .container-md > .row .es-widget-wrap .widget-card ul li span .small,
.main-body .main-body > .container-lg > .row .es-widget-wrap .widget-card ul li span .small,
.main-body .main-body > .container-xl > .row .es-widget-wrap .widget-card ul li span .small {
  font-size: 100%;
  color: #868e96;
}
.main-content .es-page-content > .container-fluid > .row .es-widget-wrap .widget-card.widget-card-orange, .main-content .es-page-content > .container-sm > .row .es-widget-wrap .widget-card.widget-card-orange, .main-content .es-page-content > .container-md > .row .es-widget-wrap .widget-card.widget-card-orange, .main-content .es-page-content > .container-lg > .row .es-widget-wrap .widget-card.widget-card-orange, .main-content .es-page-content > .container-xl > .row .es-widget-wrap .widget-card.widget-card-orange,
.main-content .main-body > .container-fluid > .row .es-widget-wrap .widget-card.widget-card-orange,
.main-content .main-body > .container-sm > .row .es-widget-wrap .widget-card.widget-card-orange,
.main-content .main-body > .container-md > .row .es-widget-wrap .widget-card.widget-card-orange,
.main-content .main-body > .container-lg > .row .es-widget-wrap .widget-card.widget-card-orange,
.main-content .main-body > .container-xl > .row .es-widget-wrap .widget-card.widget-card-orange,
.main-body .es-page-content > .container-fluid > .row .es-widget-wrap .widget-card.widget-card-orange,
.main-body .es-page-content > .container-sm > .row .es-widget-wrap .widget-card.widget-card-orange,
.main-body .es-page-content > .container-md > .row .es-widget-wrap .widget-card.widget-card-orange,
.main-body .es-page-content > .container-lg > .row .es-widget-wrap .widget-card.widget-card-orange,
.main-body .es-page-content > .container-xl > .row .es-widget-wrap .widget-card.widget-card-orange,
.main-body .main-body > .container-fluid > .row .es-widget-wrap .widget-card.widget-card-orange,
.main-body .main-body > .container-sm > .row .es-widget-wrap .widget-card.widget-card-orange,
.main-body .main-body > .container-md > .row .es-widget-wrap .widget-card.widget-card-orange,
.main-body .main-body > .container-lg > .row .es-widget-wrap .widget-card.widget-card-orange,
.main-body .main-body > .container-xl > .row .es-widget-wrap .widget-card.widget-card-orange {
  background: rgba(254, 242, 236, 0.4);
  border-color: transparent;
}
.main-content .es-page-content > .container-fluid > .row .es-widget-wrap .widget-card.widget-card-orange h4, .main-content .es-page-content > .container-sm > .row .es-widget-wrap .widget-card.widget-card-orange h4, .main-content .es-page-content > .container-md > .row .es-widget-wrap .widget-card.widget-card-orange h4, .main-content .es-page-content > .container-lg > .row .es-widget-wrap .widget-card.widget-card-orange h4, .main-content .es-page-content > .container-xl > .row .es-widget-wrap .widget-card.widget-card-orange h4, .main-content .es-page-content > .container-fluid > .row .es-widget-wrap .widget-card.widget-card-orange .h4, .main-content .es-page-content > .container-sm > .row .es-widget-wrap .widget-card.widget-card-orange .h4, .main-content .es-page-content > .container-md > .row .es-widget-wrap .widget-card.widget-card-orange .h4, .main-content .es-page-content > .container-lg > .row .es-widget-wrap .widget-card.widget-card-orange .h4, .main-content .es-page-content > .container-xl > .row .es-widget-wrap .widget-card.widget-card-orange .h4,
.main-content .main-body > .container-fluid > .row .es-widget-wrap .widget-card.widget-card-orange h4,
.main-content .main-body > .container-sm > .row .es-widget-wrap .widget-card.widget-card-orange h4,
.main-content .main-body > .container-md > .row .es-widget-wrap .widget-card.widget-card-orange h4,
.main-content .main-body > .container-lg > .row .es-widget-wrap .widget-card.widget-card-orange h4,
.main-content .main-body > .container-xl > .row .es-widget-wrap .widget-card.widget-card-orange h4,
.main-content .main-body > .container-fluid > .row .es-widget-wrap .widget-card.widget-card-orange .h4,
.main-content .main-body > .container-sm > .row .es-widget-wrap .widget-card.widget-card-orange .h4,
.main-content .main-body > .container-md > .row .es-widget-wrap .widget-card.widget-card-orange .h4,
.main-content .main-body > .container-lg > .row .es-widget-wrap .widget-card.widget-card-orange .h4,
.main-content .main-body > .container-xl > .row .es-widget-wrap .widget-card.widget-card-orange .h4,
.main-body .es-page-content > .container-fluid > .row .es-widget-wrap .widget-card.widget-card-orange h4,
.main-body .es-page-content > .container-sm > .row .es-widget-wrap .widget-card.widget-card-orange h4,
.main-body .es-page-content > .container-md > .row .es-widget-wrap .widget-card.widget-card-orange h4,
.main-body .es-page-content > .container-lg > .row .es-widget-wrap .widget-card.widget-card-orange h4,
.main-body .es-page-content > .container-xl > .row .es-widget-wrap .widget-card.widget-card-orange h4,
.main-body .es-page-content > .container-fluid > .row .es-widget-wrap .widget-card.widget-card-orange .h4,
.main-body .es-page-content > .container-sm > .row .es-widget-wrap .widget-card.widget-card-orange .h4,
.main-body .es-page-content > .container-md > .row .es-widget-wrap .widget-card.widget-card-orange .h4,
.main-body .es-page-content > .container-lg > .row .es-widget-wrap .widget-card.widget-card-orange .h4,
.main-body .es-page-content > .container-xl > .row .es-widget-wrap .widget-card.widget-card-orange .h4,
.main-body .main-body > .container-fluid > .row .es-widget-wrap .widget-card.widget-card-orange h4,
.main-body .main-body > .container-sm > .row .es-widget-wrap .widget-card.widget-card-orange h4,
.main-body .main-body > .container-md > .row .es-widget-wrap .widget-card.widget-card-orange h4,
.main-body .main-body > .container-lg > .row .es-widget-wrap .widget-card.widget-card-orange h4,
.main-body .main-body > .container-xl > .row .es-widget-wrap .widget-card.widget-card-orange h4,
.main-body .main-body > .container-fluid > .row .es-widget-wrap .widget-card.widget-card-orange .h4,
.main-body .main-body > .container-sm > .row .es-widget-wrap .widget-card.widget-card-orange .h4,
.main-body .main-body > .container-md > .row .es-widget-wrap .widget-card.widget-card-orange .h4,
.main-body .main-body > .container-lg > .row .es-widget-wrap .widget-card.widget-card-orange .h4,
.main-body .main-body > .container-xl > .row .es-widget-wrap .widget-card.widget-card-orange .h4 {
  color: #F7813D;
}
.main-content .es-page-content > .container-fluid > .row .es-widget-wrap .widget-card.widget-card-yellow, .main-content .es-page-content > .container-sm > .row .es-widget-wrap .widget-card.widget-card-yellow, .main-content .es-page-content > .container-md > .row .es-widget-wrap .widget-card.widget-card-yellow, .main-content .es-page-content > .container-lg > .row .es-widget-wrap .widget-card.widget-card-yellow, .main-content .es-page-content > .container-xl > .row .es-widget-wrap .widget-card.widget-card-yellow,
.main-content .main-body > .container-fluid > .row .es-widget-wrap .widget-card.widget-card-yellow,
.main-content .main-body > .container-sm > .row .es-widget-wrap .widget-card.widget-card-yellow,
.main-content .main-body > .container-md > .row .es-widget-wrap .widget-card.widget-card-yellow,
.main-content .main-body > .container-lg > .row .es-widget-wrap .widget-card.widget-card-yellow,
.main-content .main-body > .container-xl > .row .es-widget-wrap .widget-card.widget-card-yellow,
.main-body .es-page-content > .container-fluid > .row .es-widget-wrap .widget-card.widget-card-yellow,
.main-body .es-page-content > .container-sm > .row .es-widget-wrap .widget-card.widget-card-yellow,
.main-body .es-page-content > .container-md > .row .es-widget-wrap .widget-card.widget-card-yellow,
.main-body .es-page-content > .container-lg > .row .es-widget-wrap .widget-card.widget-card-yellow,
.main-body .es-page-content > .container-xl > .row .es-widget-wrap .widget-card.widget-card-yellow,
.main-body .main-body > .container-fluid > .row .es-widget-wrap .widget-card.widget-card-yellow,
.main-body .main-body > .container-sm > .row .es-widget-wrap .widget-card.widget-card-yellow,
.main-body .main-body > .container-md > .row .es-widget-wrap .widget-card.widget-card-yellow,
.main-body .main-body > .container-lg > .row .es-widget-wrap .widget-card.widget-card-yellow,
.main-body .main-body > .container-xl > .row .es-widget-wrap .widget-card.widget-card-yellow {
  border-color: transparent;
  background: rgba(255, 249, 219, 0.25);
}
.main-content .es-page-content .es-page-header,
.main-content .main-body .es-page-header,
.main-body .es-page-content .es-page-header,
.main-body .main-body .es-page-header {
  padding: 10px 0;
}
.main-content .es-page-content .es-page-header h1, .main-content .es-page-content .es-page-header .h1,
.main-content .main-body .es-page-header h1,
.main-content .main-body .es-page-header .h1,
.main-body .es-page-content .es-page-header h1,
.main-body .es-page-content .es-page-header .h1,
.main-body .main-body .es-page-header h1,
.main-body .main-body .es-page-header .h1 {
  color: #343a40;
  font-size: 24px;
  font-weight: 400;
}
@media only screen and (max-width: 1440px) {
  .main-content .es-page-content .es-page-header h1, .main-content .es-page-content .es-page-header .h1,
  .main-content .main-body .es-page-header h1,
  .main-content .main-body .es-page-header .h1,
  .main-body .es-page-content .es-page-header h1,
  .main-body .es-page-content .es-page-header .h1,
  .main-body .main-body .es-page-header h1,
  .main-body .main-body .es-page-header .h1 {
    font-size: 20px;
  }
}
.main-content .es-page-content .es-page-header .es-breadcrumb .breadcrumb li span.favourite,
.main-content .main-body .es-page-header .es-breadcrumb .breadcrumb li span.favourite,
.main-body .es-page-content .es-page-header .es-breadcrumb .breadcrumb li span.favourite,
.main-body .main-body .es-page-header .es-breadcrumb .breadcrumb li span.favourite {
  margin-left: 6px;
}
.main-content .es-page-content .es-page-header .es-breadcrumb .breadcrumb li span.favourite i,
.main-content .main-body .es-page-header .es-breadcrumb .breadcrumb li span.favourite i,
.main-body .es-page-content .es-page-header .es-breadcrumb .breadcrumb li span.favourite i,
.main-body .main-body .es-page-header .es-breadcrumb .breadcrumb li span.favourite i {
  font-size: 14px;
  color: #868e96;
  cursor: pointer;
}
.main-content .es-page-content .es-page-header .es-breadcrumb .breadcrumb li a,
.main-content .main-body .es-page-header .es-breadcrumb .breadcrumb li a,
.main-body .es-page-content .es-page-header .es-breadcrumb .breadcrumb li a,
.main-body .main-body .es-page-header .es-breadcrumb .breadcrumb li a {
  text-decoration: none;
  color: #3366cc;
}
.main-content .es-page-content .es-page-header .es-breadcrumb .breadcrumb li.active,
.main-content .main-body .es-page-header .es-breadcrumb .breadcrumb li.active,
.main-body .es-page-content .es-page-header .es-breadcrumb .breadcrumb li.active,
.main-body .main-body .es-page-header .es-breadcrumb .breadcrumb li.active {
  color: #F7813D;
}
.main-content .es-not-found,
.main-body .es-not-found {
  height: 300px;
  padding: 5px 5px 15px 5px;
  overflow: auto;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.main-content .es-not-found:hover,
.main-body .es-not-found:hover {
  background-color: transparent !important;
}
.main-content .es-not-found img,
.main-body .es-not-found img {
  width: 135px;
}
.main-content .es-not-found h4, .main-content .es-not-found .h4,
.main-body .es-not-found h4,
.main-body .es-not-found .h4 {
  font-size: 16px;
  margin-top: 0px;
  color: #94a0ac;
}
.main-content .es-not-found p,
.main-body .es-not-found p {
  font-size: 11px;
  padding-top: 5px;
}
.main-content .es-card-section,
.main-body .es-card-section {
  box-shadow: 0 3px 5px -1px rgba(56, 65, 74, 0.1);
  height: 100%;
  border: 1px solid #DEE2E6;
  border-radius: 2px;
  overflow: hidden;
}
.main-content .es-card-section .es-input-check,
.main-body .es-card-section .es-input-check {
  margin-right: 16px;
  margin-top: 5px;
}
.main-content .es-card-section .es-input-radio,
.main-body .es-card-section .es-input-radio {
  margin-right: 16px;
  margin-top: 5px;
}
.main-content .es-card-section .tab-content,
.main-body .es-card-section .tab-content {
  margin-top: -2px;
}
.main-content .es-card-section .evt-field-setting .form-check.form-switch,
.main-body .es-card-section .evt-field-setting .form-check.form-switch {
  padding-left: 0;
  margin-bottom: 10px;
  display: block;
}
.main-content .es-card-section .evt-field-setting .form-check.form-switch .form-check-label,
.main-body .es-card-section .evt-field-setting .form-check.form-switch .form-check-label {
  margin-bottom: 0;
  vertical-align: middle;
  width: 100%;
}
.main-content .es-card-section .evt-field-setting .form-check.form-switch .form-check-input,
.main-body .es-card-section .evt-field-setting .form-check.form-switch .form-check-input {
  height: 1.1rem !important;
  width: 3em !important;
  margin-left: 1px !important;
  vertical-align: middle;
  float: none;
}
.main-content .es-card-section .es-card-header,
.main-body .es-card-section .es-card-header {
  background-color: #f3f6f9;
  padding: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 2px 4px 0 0;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 46px;
}
.main-content .es-card-section .es-card-header.es-card-tab,
.main-body .es-card-section .es-card-header.es-card-tab {
  padding-bottom: 0;
}
.main-content .es-card-section .es-card-header.es-card-tab .nav-tabs,
.main-body .es-card-section .es-card-header.es-card-tab .nav-tabs {
  border: 0;
}
.main-content .es-dashboard-page-content,
.main-body .es-dashboard-page-content {
  min-height: calc(100vh - 188px);
  padding-bottom: 36px;
}
.main-content .es-dashboard-page-content .es-drag-row,
.main-body .es-dashboard-page-content .es-drag-row {
  cursor: grab;
  font-size: 18px;
}
.main-content .es-dashboard-page-content .es-text-area-small,
.main-body .es-dashboard-page-content .es-text-area-small {
  height: 20px;
}
.main-content .es-dashboard-page-content .es-text-area-normal,
.main-body .es-dashboard-page-content .es-text-area-normal {
  height: 29px;
}
.main-content .es-dashboard-page-content .es-text-area-medium,
.main-body .es-dashboard-page-content .es-text-area-medium {
  height: 51px;
}
.main-content .es-dashboard-page-content .es-text-area-large,
.main-body .es-dashboard-page-content .es-text-area-large {
  height: 66px;
}
.main-content .es-dashboard-page-content .es-text-area-extra-large,
.main-body .es-dashboard-page-content .es-text-area-extra-large {
  height: 81px;
}
.main-content .es-dashboard-page-content .es-template-left-builder,
.main-body .es-dashboard-page-content .es-template-left-builder {
  position: sticky;
  top: 90px;
  padding-bottom: 21px;
  z-index: 11;
}
.main-content .es-dashboard-page-content .es-template-left-builder .tab-pane .evt-field-setting .es-custom-popup.es-field-rule,
.main-body .es-dashboard-page-content .es-template-left-builder .tab-pane .evt-field-setting .es-custom-popup.es-field-rule {
  position: absolute;
  right: -310px;
  top: 48%;
}
.main-content .es-dashboard-page-content .es-page-header,
.main-body .es-dashboard-page-content .es-page-header {
  padding: 15px 0 15px 15px;
}
.main-content .es-dashboard-page-content .es-page-header h1, .main-content .es-dashboard-page-content .es-page-header .h1,
.main-body .es-dashboard-page-content .es-page-header h1,
.main-body .es-dashboard-page-content .es-page-header .h1 {
  color: #343A40;
  font-size: 24px;
  font-weight: 400;
}
@media only screen and (max-width: 1440px) {
  .main-content .es-dashboard-page-content .es-page-header h1, .main-content .es-dashboard-page-content .es-page-header .h1,
  .main-body .es-dashboard-page-content .es-page-header h1,
  .main-body .es-dashboard-page-content .es-page-header .h1 {
    font-size: 20px;
  }
}
.main-content .es-dashboard-page-content .es-page-header .es-breadcrumb .breadcrumb li a,
.main-body .es-dashboard-page-content .es-page-header .es-breadcrumb .breadcrumb li a {
  text-decoration: none;
  color: #3366cc;
}
.main-content .es-dashboard-page-content .es-page-header .es-breadcrumb .breadcrumb li.active,
.main-body .es-dashboard-page-content .es-page-header .es-breadcrumb .breadcrumb li.active {
  color: #F7813D;
}
.main-content .es-dashboard-page-content .es-page-header .es-breadcrumb .favourite,
.main-body .es-dashboard-page-content .es-page-header .es-breadcrumb .favourite {
  margin-left: 6px;
}
.main-content .es-dashboard-page-content .es-page-header .es-breadcrumb .favourite i,
.main-body .es-dashboard-page-content .es-page-header .es-breadcrumb .favourite i {
  font-size: 18px;
  color: #868E96;
  cursor: pointer;
}
.main-content .es-dashboard-page-content .es-tabs .es-form-builder-nav-head,
.main-body .es-dashboard-page-content .es-tabs .es-form-builder-nav-head {
  background-color: rgba(248, 249, 250, 0.8);
  padding: 11px 0 0 20px;
  border-radius: 2px 4px 0px 0px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  height: 46px;
  border-bottom: 0px solid #fff;
  border-top: 1px solid #dee2e6;
  border-left: 1px solid #dee2e6;
  border-right: 1px solid #dee2e6;
}
.main-content .es-dashboard-page-content .es-tabs .es-form-builder-nav-head li a,
.main-body .es-dashboard-page-content .es-tabs .es-form-builder-nav-head li a {
  padding: 0.6rem 0.75rem;
  display: block;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  color: #495057;
  margin-top: 3px;
}
.main-content .es-dashboard-page-content .es-tabs .es-form-builder-nav-head li a.active,
.main-body .es-dashboard-page-content .es-tabs .es-form-builder-nav-head li a.active {
  color: #F7813D !important;
  background: #fff !important;
  border-color: rgba(0, 0, 0, 0.125) rgba(0, 0, 0, 0.125) transparent !important;
}
.main-content .es-dashboard-page-content .es-tabs .es-tab-form-content,
.main-body .es-dashboard-page-content .es-tabs .es-tab-form-content {
  border: 1px solid #dee2e6;
  padding: 10px 18px 10px 18px;
  background-color: #fff;
  border-radius: 0 0 0 4px;
  min-height: 450px;
}
.main-content .es-dashboard-page-content .es-tabs .es-builder-wrap,
.main-body .es-dashboard-page-content .es-tabs .es-builder-wrap {
  padding: 0;
}
.main-content .es-dashboard-page-content .es-tabs .es-builder-wrap .es-element,
.main-body .es-dashboard-page-content .es-tabs .es-builder-wrap .es-element {
  border-radius: 2px;
  border: 1px solid #dee2e6;
  background: #fff;
  padding: 6px 14px;
  color: #343A40;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  margin: 8px 4px 8px 0px;
  width: calc(50% - 10px);
  cursor: grab;
  float: left;
}
.main-content .es-dashboard-page-content .es-tabs .es-builder-wrap .es-element:hover,
.main-body .es-dashboard-page-content .es-tabs .es-builder-wrap .es-element:hover {
  background-color: #E9ECEF !important;
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .main-content .es-dashboard-page-content .es-tabs .es-builder-wrap .es-element,
  .main-body .es-dashboard-page-content .es-tabs .es-builder-wrap .es-element {
    width: 100%;
    margin-right: 0;
  }
}
@media only screen and (min-width: 1201px) and (max-width: 1440px) {
  .main-content .es-dashboard-page-content .es-tabs .es-builder-wrap .es-element,
  .main-body .es-dashboard-page-content .es-tabs .es-builder-wrap .es-element {
    width: calc(46% - 5px);
    margin: 0 18px 15px 0px;
    font-size: 11px;
  }
}
.main-content .es-dashboard-page-content .es-tabs .es-builder-wrap .es-element i,
.main-body .es-dashboard-page-content .es-tabs .es-builder-wrap .es-element i {
  color: #868e96;
  font-size: 18px;
  vertical-align: middle;
  line-height: normal;
  margin-right: 6px;
}
.main-content .es-dashboard-page-content .es-build-form,
.main-body .es-dashboard-page-content .es-build-form {
  border-radius: 2px;
  border: 1px solid #DEE2E6;
  padding: 10px;
  height: 100%;
}
.main-content .es-dashboard-page-content .es-build-form .input-group .input-group-text,
.main-body .es-dashboard-page-content .es-build-form .input-group .input-group-text {
  border-radius: 2px 0 !important;
}
.main-content .es-dashboard-page-content .es-build-form .es-form-content,
.main-body .es-dashboard-page-content .es-build-form .es-form-content {
  border-bottom: 1px solid #DEE2E6;
  margin: 6px 6px 0 11px;
  cursor: pointer;
  padding: 6px 6px 6px 6px;
}
.main-content .es-dashboard-page-content .es-build-form .es-form-content:hover,
.main-body .es-dashboard-page-content .es-build-form .es-form-content:hover {
  background-color: rgba(248, 249, 250, 0.8);
  padding: 6px 6px 6px 6px;
}
.main-content .es-dashboard-page-content .es-build-form .es-form-content p,
.main-body .es-dashboard-page-content .es-build-form .es-form-content p {
  margin-bottom: 0px;
}
.main-content .es-dashboard-page-content .es-build-form .es-form-content .es-form-build-title:hover i,
.main-body .es-dashboard-page-content .es-build-form .es-form-content .es-form-build-title:hover i {
  visibility: visible;
}
.main-content .es-dashboard-page-content .es-build-form .es-form-content .es-form-build-title i,
.main-body .es-dashboard-page-content .es-build-form .es-form-content .es-form-build-title i {
  visibility: hidden;
}
.main-content .es-dashboard-page-content .es-build-form .es-form-drag-components,
.main-body .es-dashboard-page-content .es-build-form .es-form-drag-components {
  margin: -12px 0 23px 7px;
  height: calc(100% - 155px);
}
@media only screen and (min-width: 1617px) {
  .main-content .es-dashboard-page-content .es-build-form .es-form-drag-components,
  .main-body .es-dashboard-page-content .es-build-form .es-form-drag-components {
    height: calc(100% - 134px);
  }
}
.main-content .es-dashboard-page-content .es-build-form .es-form-drag-components .highlight,
.main-body .es-dashboard-page-content .es-build-form .es-form-drag-components .highlight {
  cursor: move;
  padding: 10px 20px;
  background-color: #FAFBFC;
  border: 2px dashed #dbdbdb;
  margin: 10px 0;
  margin-top: 10px;
  margin-bottom: 10px;
  color: white;
  width: 100%;
}
.main-content .es-dashboard-page-content .es-build-form .es-form-drag-components .es-drop-highlight-content,
.main-body .es-dashboard-page-content .es-build-form .es-form-drag-components .es-drop-highlight-content {
  height: 107px;
}
.main-content .es-dashboard-page-content .es-build-form .es-form-drag-components .es-sortable-preview,
.main-body .es-dashboard-page-content .es-build-form .es-form-drag-components .es-sortable-preview {
  padding-left: 4px;
}
.main-content .es-dashboard-page-content .es-build-form .es-form-drag-components .es-sortable-preview .row-element,
.main-body .es-dashboard-page-content .es-build-form .es-form-drag-components .es-sortable-preview .row-element {
  display: flex;
  background-color: #FAFBFC !important;
  padding: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
  cursor: grab;
}
.main-content .es-dashboard-page-content .es-build-form .es-form-drag-components .es-sortable-preview .form-group.form-check.es-input-check,
.main-body .es-dashboard-page-content .es-build-form .es-form-drag-components .es-sortable-preview .form-group.form-check.es-input-check {
  margin-right: 16px;
  margin-top: 5px;
}
.main-content .es-dashboard-page-content .es-build-form .es-form-drag-components .es-sortable-preview .form-group.form-check.es-input-radio,
.main-body .es-dashboard-page-content .es-build-form .es-form-drag-components .es-sortable-preview .form-group.form-check.es-input-radio {
  margin-right: 16px;
  margin-top: 5px;
}
.main-content .es-dashboard-page-content .es-build-form .es-form-drag-components .es-sortable-preview .es-domain-active-editor,
.main-content .es-dashboard-page-content .es-build-form .es-form-drag-components .es-sortable-preview .es-domain-hovered-editor,
.main-body .es-dashboard-page-content .es-build-form .es-form-drag-components .es-sortable-preview .es-domain-active-editor,
.main-body .es-dashboard-page-content .es-build-form .es-form-drag-components .es-sortable-preview .es-domain-hovered-editor {
  background-color: #E9ECEF !important;
}
.main-content .es-dashboard-page-content .es-build-form .es-form-drag-components .es-sortable-preview .es-form-element,
.main-body .es-dashboard-page-content .es-build-form .es-form-drag-components .es-sortable-preview .es-form-element {
  padding: 6px 10px 9px 9px;
  margin-bottom: 5px;
  align-items: center;
  border-radius: 5px;
  margin-right: -4px;
  position: relative;
  border-width: 0 3px;
  border-style: solid;
  border-color: #fafbfc;
  border-radius: 5px;
}
.main-content .es-dashboard-page-content .es-build-form .es-form-drag-components .es-sortable-preview .es-form-element .ri-eye-off-line,
.main-body .es-dashboard-page-content .es-build-form .es-form-drag-components .es-sortable-preview .es-form-element .ri-eye-off-line {
  color: #dc3545;
  font-size: 13px;
}
.main-content .es-dashboard-page-content .es-build-form .es-form-drag-components .es-sortable-preview .es-form-element .form-group,
.main-body .es-dashboard-page-content .es-build-form .es-form-drag-components .es-sortable-preview .es-form-element .form-group {
  margin-bottom: 8px;
}
.main-content .es-dashboard-page-content .es-build-form .es-form-drag-components .es-sortable-preview .es-form-element .input-group,
.main-body .es-dashboard-page-content .es-build-form .es-form-drag-components .es-sortable-preview .es-form-element .input-group {
  position: static;
}
.main-content .es-dashboard-page-content .es-build-form .es-form-drag-components .es-sortable-preview .es-form-element .label,
.main-body .es-dashboard-page-content .es-build-form .es-form-drag-components .es-sortable-preview .es-form-element .label {
  font-size: 13px;
  color: #495057;
  font-weight: 400;
}
.main-content .es-dashboard-page-content .es-build-form .es-form-drag-components .es-sortable-preview .es-form-element .form-control:focus,
.main-body .es-dashboard-page-content .es-build-form .es-form-drag-components .es-sortable-preview .es-form-element .form-control:focus {
  color: inherit;
  background-color: #fff !important;
  border-color: #dee2e6;
  outline: 3;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.25) !important;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.25) !important;
}
.main-content .es-dashboard-page-content .es-build-form .es-form-drag-components .es-sortable-preview .es-form-element input,
.main-body .es-dashboard-page-content .es-build-form .es-form-drag-components .es-sortable-preview .es-form-element input {
  font-size: 12px;
}
.main-content .es-dashboard-page-content .es-build-form .es-form-drag-components .es-sortable-preview .es-form-element .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback),
.main-body .es-dashboard-page-content .es-build-form .es-form-drag-components .es-sortable-preview .es-form-element .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  border-radius: 0px 4px 4px 0;
}
.main-content .es-dashboard-page-content .es-build-form .es-form-drag-components .es-sortable-preview .es-form-element .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback),
.main-body .es-dashboard-page-content .es-build-form .es-form-drag-components .es-sortable-preview .es-form-element .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  border-radius: 0px 4px 4px 0;
}
.main-content .es-dashboard-page-content .es-build-form .es-form-drag-components .es-sortable-preview .es-form-element .input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.main-body .es-dashboard-page-content .es-build-form .es-form-drag-components .es-sortable-preview .es-form-element .input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
  border-radius: 0px 4px 4px 0;
}
.main-content .es-dashboard-page-content .es-build-form .es-form-drag-components .es-sortable-preview .es-form-element .es-form-build-delete,
.main-body .es-dashboard-page-content .es-build-form .es-form-drag-components .es-sortable-preview .es-form-element .es-form-build-delete {
  color: #868E96;
  background-color: #fff;
  border-radius: 50% !important;
  padding: 0px 3px;
  position: absolute;
  bottom: -7px;
  border: 1px solid #e6e6e6;
  margin-top: 19px;
  right: -2px;
  z-index: 9;
  cursor: pointer;
}
.main-content .es-dashboard-page-content .es-build-form .es-form-drag-components .es-sortable-preview .es-form-element .es-form-build-copy,
.main-body .es-dashboard-page-content .es-build-form .es-form-drag-components .es-sortable-preview .es-form-element .es-form-build-copy {
  color: #868E96;
  background-color: #fff;
  border-radius: 50% !important;
  padding: 0px 3px;
  position: absolute;
  bottom: -7px;
  border: 1px solid #e6e6e6;
  margin-top: 19px;
  right: 24px;
  z-index: 9;
  cursor: pointer;
}
.main-content .es-dashboard-page-content .es-build-form .es-form-drag-components .es-sortable-preview .es-form-element .form-group .es-input-radio,
.main-body .es-dashboard-page-content .es-build-form .es-form-drag-components .es-sortable-preview .es-form-element .form-group .es-input-radio {
  padding-left: 18px !important;
}
.main-content .es-dashboard-page-content .es-build-form .es-form-drag-components .es-not-found,
.main-body .es-dashboard-page-content .es-build-form .es-form-drag-components .es-not-found {
  height: 300px;
  padding: 5px 5px 15px 5px;
  overflow: auto;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.main-content .es-dashboard-page-content .es-build-form .es-form-drag-components .es-not-found:hover,
.main-body .es-dashboard-page-content .es-build-form .es-form-drag-components .es-not-found:hover {
  background-color: #fff !important;
}
.main-content .es-dashboard-page-content .es-build-form .es-form-drag-components .es-not-found img,
.main-body .es-dashboard-page-content .es-build-form .es-form-drag-components .es-not-found img {
  width: 235px;
}
.main-content .es-dashboard-page-content .es-build-form .es-form-drag-components .es-not-found h4, .main-content .es-dashboard-page-content .es-build-form .es-form-drag-components .es-not-found .h4,
.main-body .es-dashboard-page-content .es-build-form .es-form-drag-components .es-not-found h4,
.main-body .es-dashboard-page-content .es-build-form .es-form-drag-components .es-not-found .h4 {
  font-size: 16px;
  margin-top: 20px;
  color: #495057;
}
.main-content .es-dashboard-page-content .es-build-form .es-form-drag-components .es-not-found p,
.main-body .es-dashboard-page-content .es-build-form .es-form-drag-components .es-not-found p {
  font-size: 11px;
  padding-top: 5px;
}
.main-content .es-dashboard-page-content .es-builder-wrap,
.main-body .es-dashboard-page-content .es-builder-wrap {
  padding: 0;
}
.main-content .es-dashboard-page-content .es-builder-wrap .es-element,
.main-body .es-dashboard-page-content .es-builder-wrap .es-element {
  border-radius: 2px;
  border: 1px solid #DEE2E6;
  background: #FFF;
  padding: 6px 14px;
  color: #343A40;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  margin: 8px 4px 5px 0px;
  width: calc(51% - 10px);
  cursor: pointer;
}
.main-content .es-dashboard-page-content .es-builder-wrap .es-element:hover,
.main-body .es-dashboard-page-content .es-builder-wrap .es-element:hover {
  background: #E9ECEF;
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .main-content .es-dashboard-page-content .es-builder-wrap .es-element,
  .main-body .es-dashboard-page-content .es-builder-wrap .es-element {
    width: 100%;
    margin-right: 0;
  }
}
@media only screen and (min-width: 1201px) and (max-width: 1440px) {
  .main-content .es-dashboard-page-content .es-builder-wrap .es-element,
  .main-body .es-dashboard-page-content .es-builder-wrap .es-element {
    width: calc(46% - 5px);
    margin: 0 18px 15px 0px;
    font-size: 11px;
  }
}
.main-content .es-dashboard-page-content .es-builder-wrap .es-element i,
.main-body .es-dashboard-page-content .es-builder-wrap .es-element i {
  color: #868E96;
  font-size: 18px;
  vertical-align: middle;
  line-height: normal;
  margin-right: 6px;
}
.main-content footer,
.main-body footer {
  padding: 5px 20px;
  height: auto;
}
.main-content footer .es-version span,
.main-body footer .es-version span {
  color: #fff;
  font-size: 16px;
}
.main-content footer .es-time-zone,
.main-body footer .es-time-zone {
  text-align: center;
  color: #fff;
  width: auto;
  margin: auto;
  display: flex;
  align-items: center;
  padding: 0 15px;
}
.main-content footer .es-time-zone i,
.main-body footer .es-time-zone i {
  margin: 7px 0;
  display: inline-block;
  font-size: 20px;
}
.main-content footer .es-time-zone ul,
.main-body footer .es-time-zone ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0 15px;
  border-left: 1px solid #6A6A6A;
  display: flex;
}
.main-content footer .es-time-zone ul li,
.main-body footer .es-time-zone ul li {
  line-height: normal;
  margin: 6px 0;
  font-size: 12px;
}
.main-content footer .es-time-zone ul li label,
.main-body footer .es-time-zone ul li label {
  font-style: normal;
  font-weight: 400;
  margin-bottom: 2px;
}
.main-content footer .es-time-zone ul li span,
.main-body footer .es-time-zone ul li span {
  font-style: normal;
  font-weight: 600;
}
.main-content footer .es-time-zone ul li:last-child,
.main-body footer .es-time-zone ul li:last-child {
  color: #F7813D;
}
.main-content footer .sidebar-footer,
.main-body footer .sidebar-footer {
  text-align: right;
  color: #fff;
  display: flex;
  gap: 8px;
}
.main-content footer .sidebar-footer button,
.main-body footer .sidebar-footer button {
  border: none;
  background-color: transparent;
}
.main-content footer .sidebar-footer button img,
.main-body footer .sidebar-footer button img {
  width: 16px;
}
.main-content footer .sidebar-footer button i,
.main-body footer .sidebar-footer button i {
  font-size: 16px;
  color: #fff;
}

.file-name-ext.es-efs-file-name-ext .col-10 {
  width: 82.333333%;
}
.file-name-ext.es-efs-file-name-ext .col-2 {
  width: 17.666667%;
}
.file-name-ext.es-efs-file-name-ext .col-2 .es-file-ext-text {
  text-align: center;
}
.file-name-ext .es-input-text input {
  border-radius: 2px 0 !important;
}
.file-name-ext .es-input-text label.form-label {
  display: block !important;
  height: 19.5px;
}
.file-name-ext .es-input-text span.form-control.evt-file-ext-name {
  margin-top: 0 !important;
}
.file-name-ext .evt-file-ext-name {
  border-radius: 0 4px 4px 0;
  margin-top: 2.5px;
  border-left: 0;
}

.es-title-wiki {
  border: none;
  background-color: transparent;
  padding: 0;
  font-size: 15px;
}

.es-user-list-avatar {
  border: 2px solid #dee2e7;
  height: 32px;
  width: 32px;
  object-fit: cover;
}

.form-control:focus,
.form-select:focus {
  box-shadow: none;
}

.evt-fiscal-year {
  width: 70%;
}
.form-control,
.form-select {
  font-size: 13px;
  min-height: 32px;
  line-height: 18px;
}
.form-control:focus,
.form-select:focus {
  background-color: #fff;
  border-color: #ced4da;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(210, 210, 210, 0.25);
}
.form-control.w-field,
.form-select.w-field {
  max-width: 140px;
}
.form-control.w-field-2,
.form-select.w-field-2 {
  max-width: 126px;
}
.form-control.w-field-3,
.form-select.w-field-3 {
  max-width: 77px !important;
}

.es-badge.success {
  background: #dff0d8;
  background-color: rgb(223, 240, 216);
  border-color: hsl(93, 44%, 85%);
  color: #3c763d;
  padding: 2px 11px 4px 11px;
  border-radius: 2px;
  margin-right: 5px;
}

.card-body form .dropdown .btn.dropdown-toggle {
  background-color: #fff;
  color: #495057 !important;
  border: 1px solid #dee2e6 !important;
  padding: 0rem 0.75rem !important;
  font-size: 13px;
  min-height: 30px;
}
.card-body form .dropdown .btn.dropdown-toggle:hover {
  background-color: #fff !important;
  color: #495057 !important;
}
.card-body input::-webkit-calendar-picker-indicator {
  filter: invert(0.5);
}
.card-body input::-moz-calendar-picker-indicator {
  filter: invert(0.5);
}
.card-body input.currency-input {
  max-width: 82px;
}
.card-body input.hours-input {
  max-width: 88px;
}
.card-body input.read-only-input {
  cursor: auto !important;
}
.card-body .input-group .input-group-text i {
  font-size: 13px;
}
.card-body .input-group .currency-addon select.currency-selector {
  border-top-left-radius: 0;
  padding: 6px 30px 6px 6px;
  font-size: 13px;
  border-bottom-left-radius: 0;
}

#toast-container {
  top: 141px;
}
#toast-container .toast {
  border-radius: 0 !important;
  padding: 12px;
  font-size: 13px;
  box-shadow: none !important;
  border: none;
}
#toast-container .toast.toast-error {
  background-color: #f9dbdd;
  color: #dc3545;
  border: 1px solid #f2a3ab;
}
#toast-container .toast.toast-success {
  background-color: #c5f7dc;
  border: 1px solid #82e0cc;
  color: #04c89d;
}
#toast-container .toast .toast-message {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #a1a1a1;
}

.form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #a1a1a1;
}

.form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: #a1a1a1;
}

.form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #a1a1a1;
}

.form-control::placeholder {
  color: #a1a1a1;
}

.es-card-section {
  box-shadow: 0 3px 5px -1px rgba(56, 65, 74, 0.1);
  height: 100%;
  border: 1px solid #DEE2E6;
  border-radius: 2px;
  overflow: hidden;
}

.input-group {
  position: unset !important;
}

.es-datatable i {
  font-size: 15px;
}
.es-datatable table td.dataTables_empty {
  border-bottom: 0 !important;
}
.es-datatable i.user-email {
  opacity: 0;
  transition: all 0.2s ease;
  cursor: pointer;
  padding-left: 2px;
}
.es-datatable .row:last-child .col-sm-12.col-md-7 {
  flex: 0 0 100%;
  max-width: 100%;
}
.es-datatable .table-filters {
  display: flex;
  align-items: center;
  justify-content: start;
}
.es-datatable .table-filters .es-datatable-add {
  position: absolute;
  right: 13px;
}
.es-datatable .table-filters .dataTables_filter {
  margin-right: 0px;
}
.es-datatable .table-filters .dataTables_filter label {
  max-width: inherit;
}
.es-datatable .table-filters .dataTables_filter label input.form-control {
  margin-left: 0;
}
.es-datatable .table-filters .es-datatable-filter,
.es-datatable .table-filters .table-filters {
  display: flex;
  align-items: center;
}
.es-datatable .table-filters .es-datatable-filter > *:first-child,
.es-datatable .table-filters .table-filters > *:first-child {
  margin-left: 0 !important;
}
.es-datatable .table-filters .es-reset {
  position: relative;
  margin-left: 2px;
  padding-left: 10px;
}
.es-datatable .table-filters .es-reset:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 1px;
  left: -5px;
  top: 0;
}

div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:last-child {
  padding-left: 0;
}

.es-confirm-info .ri-error-warning-line,
.es-confirm-info .ri-error-warning-line:hover {
  color: #3366cc !important;
}

.es-widget-wrap .card-body .es-form-content .es-form-head {
  border-bottom: 1px solid #ebebeb;
  margin: 0 0 15px;
  padding: 0 0 10px;
}
.es-widget-wrap .card-body .es-form-content .es-form-head .es-left-sec {
  flex: 1;
  padding-right: 15px;
}
.es-widget-wrap .card-body .es-form-content .es-form-head h4, .es-widget-wrap .card-body .es-form-content .es-form-head .h4 {
  font-size: 13px;
}
.es-widget-wrap .card-body .es-form-content .es-form-head p {
  font-size: 11px;
  margin-bottom: 0;
}
.es-widget-wrap .card-body .es-action-cards {
  margin-top: 15px;
  margin-left: 0px;
}
.es-widget-wrap .card-body .es-action-cards.es-address-container .action-card-holder .action-card-content {
  padding-top: 0px;
  height: 108px;
}
.es-widget-wrap .card-body .es-action-cards.es-address-container .action-card-holder .action-card-content table tr td {
  padding: 5px 0 0 0 !important;
}
.es-widget-wrap .card-body .es-action-cards.es-address-container .action-card-holder .action-card {
  height: 110px;
  padding-top: 0px;
}
.es-widget-wrap .card-body .es-col-form {
  display: flex;
  margin-bottom: 20px;
  margin-top: 15px;
}
.es-widget-wrap .card-body .es-col-form .form-group {
  position: relative;
  margin-bottom: 0;
}
.es-widget-wrap .card-body .es-col-form .form-group .user-email-view span.email-ellipses {
  padding-right: 2px;
}
.es-widget-wrap .card-body .es-col-form .form-group:hover .copy-field {
  visibility: visible;
}
.es-widget-wrap .card-body .es-col-form .form-group .evt-view div {
  word-break: break-all;
}
.es-widget-wrap .card-body .es-col-form .form-group .evt-view div .email-ellipses {
  white-space: nowrap;
}
.es-widget-wrap .card-body .es-col-form + .es-col-form {
  border-top: 1px solid #eaeaea;
  margin-top: 10px;
  padding-top: 20px;
}
.es-widget-wrap .card-body .es-col-form:last-child {
  margin-bottom: 10px !important;
}
.es-widget-wrap .card-body .es-col-form .section-title {
  text-transform: none !important;
  font-size: 13px !important;
  border-right: 1px solid #eaeaea;
  padding-left: 0px;
  margin-right: 11px;
  line-height: inherit;
  flex: 0 0 200px;
  max-width: 150px;
  font-weight: 500;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .es-widget-wrap .card-body .es-col-form .section-title {
    font-size: 12px !important;
    flex: 0 0 100px;
    max-width: 100px;
  }
}
.es-widget-wrap .card-body .es-col-form .es-row-wrap {
  flex: 1;
  position: relative;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .es-widget-wrap .card-body .es-col-form .es-row-wrap .form-group {
    font-size: 11px;
  }
}
.es-widget-wrap .card-body .es-row-wrap {
  flex: 1;
  position: relative;
  margin: 0;
}
.es-widget-wrap .card-body .es-row-wrap .linked-added-link div {
  word-break: break-all;
}

.common_modal .modal-body .es-textarea textarea#remarks {
  height: 120px !important;
}

.modal-header {
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
}
.modal-header .modal-title {
  font-size: 16px !important;
  color: #343A40;
  font-weight: 400;
}
.modal-header .btn-close {
  font-size: 10px !important;
  color: #212529;
}
.modal-header .btn-close:hover {
  color: #F7813D !important;
  background-image: url(/img/modal-close.svg);
}

.es-file-store-heading {
  margin-left: 0px;
  margin-right: 0px;
  margin-top: -11px;
  padding: 12px 0;
  margin-bottom: 0px;
}

.filesTrash tbody tr td a {
  margin-right: 10px;
  font-size: 14px;
}

.read-more {
  color: #f7813d;
  cursor: pointer;
}

.es-file-section-search {
  height: 31px;
  margin-bottom: 10px;
  position: relative;
}
.es-file-section-search i.ri-search-line:hover {
  color: #868e96 !important;
}
.es-file-section-search.es-efs-file-search input {
  width: 208px;
  height: 32px;
}
.es-file-section-search input {
  margin-left: 0;
  border: 1px solid #ced4da;
  padding: 6px 8px 7px 30px;
  margin-bottom: 10px;
  border: 1px solid #dee2e6;
  height: 30px;
  background-color: #ffffff;
  color: #495057;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  font-size: 13px;
  width: 256px;
}
.es-file-section-search input:focus {
  box-shadow: 0 0 0 0.25rem rgba(210, 210, 210, 0.25);
}
.es-file-section-search i.es-file-store-search {
  position: absolute;
  z-index: 9;
  font-size: 16px;
  line-height: 35px;
  left: 8px;
  top: -2px;
  color: #868e96;
}

.progress {
  background-color: #e9ecef !important;
}
.progress .progress-bar {
  background-color: #f7813d;
}
.progress .progress-bar.es-progress-complete {
  background: #40C057 !important;
}

.progressbar {
  margin: 0;
  counter-reset: step;
  width: 100%;
  display: inline-block;
  padding: 0;
}
.progressbar li {
  list-style-type: none;
  width: 25%;
  float: left;
  font-size: 13px;
  position: relative;
  text-align: left;
  text-transform: capitalize;
  color: #868e96;
  font-weight: 500;
}
.progressbar li:before {
  width: 15px;
  height: 15px;
  content: "";
  line-height: 30px;
  border: 2px solid #efe5e0;
  background-color: #efe5e0;
  display: block;
  text-align: center;
  margin: 0 0 10px 0;
  border-radius: 50%;
  transition: all 0.8s;
}
.progressbar li:after {
  width: 100%;
  height: 4px;
  content: "";
  position: absolute;
  background-color: #efe5e0;
  top: 6px;
  left: -100%;
  z-index: -1;
  transition: all 0.8s;
}
.progressbar li:first-child {
  color: #000;
}
.progressbar li:first-child:after {
  content: none;
}
.progressbar li.active:before {
  border-color: #f7813d;
  background-color: #f7813d;
  transition: all 0.8s;
}
.progressbar li.active:after {
  background-color: #f7813d;
  transition: all 0.8s;
}

.es-progress-bar {
  color: #868e96;
  counter-reset: progress-bar-counter;
  display: flex;
  flex-flow: row nowrap;
  line-height: 2rem;
  list-style-type: none;
  margin: 27px 0 15px;
  padding: 0px 17px;
}
.es-progress-bar .active {
  color: #000;
  font-weight: 500;
}
.es-progress-bar .active.progress-bar-item::before {
  background-color: #f7813d;
  background-color: #f7813d;
}
.es-progress-bar .progress-bar-item {
  counter-increment: progress-bar-counter;
  flex: 1 0 0;
  position: relative;
}
.es-progress-bar .progress-bar-item::before {
  background-color: #f4f4f3;
  border-radius: 20px;
  content: "";
  display: block;
  height: 5px;
  width: 100%;
}
.es-progress-bar .progress-bar-item .progress-bar-item-content::before {
  content: counter(progress-bar-counter, decimal) ". ";
}

.progress .progress-bar {
  background-color: #f7813d;
}

.progressbar {
  margin: 0;
  counter-reset: step;
  width: 100%;
  display: inline-block;
  padding: 0;
}
.progressbar li {
  list-style-type: none;
  width: 25%;
  float: left;
  font-size: 13px;
  position: relative;
  text-align: left;
  text-transform: capitalize;
  color: #868e96;
  font-weight: 500;
}
.progressbar li:before {
  width: 15px;
  height: 15px;
  content: "";
  line-height: 30px;
  border: 2px solid #efe5e0;
  background-color: #efe5e0;
  display: block;
  text-align: center;
  margin: 0 0 10px 0;
  border-radius: 50%;
  transition: all 0.8s;
}
.progressbar li:after {
  width: 100%;
  height: 4px;
  content: "";
  position: absolute;
  background-color: #efe5e0;
  top: 6px;
  left: -100%;
  z-index: -1;
  transition: all 0.8s;
}
.progressbar li:first-child {
  color: #000;
}
.progressbar li:first-child:after {
  content: none;
}
.progressbar li.active:before {
  border-color: #f7813d;
  background-color: #f7813d;
  transition: all 0.8s;
}
.progressbar li.active:after {
  background-color: #f7813d;
  transition: all 0.8s;
}

.es-popout {
  background-color: #fff;
  border-radius: 2px;
  padding: 2px;
  width: 395px;
  font-size: 13px;
  overflow: hidden;
  position: absolute;
  z-index: 999;
  transform: translateY(-257px);
  margin-left: 20px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.es-popout li .email-ellipses {
  max-width: 200px;
}
.es-popout.v2 .popout-profile-head {
  margin-top: 0 !important;
  padding-left: 4px;
  padding-right: 5px;
}

.popout-profile-head {
  align-items: start;
  margin: 8px 0 0;
  padding: 0 15px;
}
.popout-profile-head svg.bi.bi-person-circle {
  height: 40px;
  width: 40px;
  opacity: 0.5;
  fill: #6b83b4;
  margin-top: 0;
}
.popout-profile-head .dropdown button.dropdown-toggle {
  border: none;
  padding: 0;
  display: inline-block;
}
.popout-profile-head .dropdown button.dropdown-toggle::after {
  content: none;
}
.popout-profile-head .dropdown button.dropdown-toggle:focus {
  box-shadow: none !important;
}
.popout-profile-head .dropdown ul.dropdown-menu {
  border: none;
  box-shadow: 0px 0px 9px -2px #ccc;
  line-height: normal;
  padding: 8px 0;
}
.popout-profile-head .dropdown ul.dropdown-menu li a {
  font-size: 13px;
  color: #666;
  padding: 2px 10px;
}
.popout-profile-head .dropdown ul.dropdown-menu li a:hover {
  background-color: transparent !important;
  color: #000;
}

.profile-right-info {
  flex: 1;
  margin-top: 10px;
  padding-left: 0px;
}
.profile-right-info h4, .profile-right-info .h4 {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 16px;
  color: #343A40;
}
.profile-right-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.profile-right-info ul li {
  display: flex;
  margin: 8px 0;
}
.profile-right-info ul li label {
  flex: 0 0 135px;
  font-weight: 500;
  display: inline-block !important;
}
.profile-right-info span small, .profile-right-info span .small {
  background-color: #eceae9;
  display: inline-block;
  font-size: 11px;
  color: #495057;
  padding: 2px 4px;
  border-radius: 2px;
  line-height: normal;
  font-weight: 500;
  padding: 3px 4px;
  line-height: 11px;
}

.popout-body {
  margin-top: 10px;
  padding: 0 15px;
}
.popout-body h5, .popout-body .h5 {
  font-size: 14px;
  margin-bottom: 4px;
}
.popout-body > span {
  font-size: 13px;
}
.popout-body p {
  margin-bottom: 0;
  margin-bottom: 0;
}
.popout-body ul {
  padding: 0;
  margin: 0;
  list-style: none;
  padding: 0;
  margin: 7px 0 12px;
  list-style: none;
}
.popout-body ul li {
  color: #333;
  margin: 3px 0;
}
.popout-body .form-group textarea {
  font-size: 13px;
  border-radius: 3px;
  height: 66px;
  padding: 5px 10px;
}
.popout-body .form-group textarea:focus {
  box-shadow: none;
}
.popout-body .form-group select {
  height: 30px;
  width: 100%;
  border-radius: 3px;
  font-size: 12px !important;
  padding: 0 10px;
}
.popout-body form .form-group select {
  font-size: 13px;
  color: #666;
}

.popout-header-row {
  border-bottom: 1px solid #e5e5e5;
  margin: -10px 0 15px;
  padding: 7px 15px 0;
  background-color: #fff;
}
.popout-header-row h5, .popout-header-row .h5 {
  font-size: 20px;
  color: #343A40;
}

.popout_status {
  background-color: #aee9ae;
  color: green;
  border-radius: 2px;
  line-height: normal;
  padding: 0 6px 3px;
  position: relative;
}
.popout_status::before {
  content: "";
  display: inline-block;
  height: 4px;
  width: 4px;
  background-color: green;
  border-radius: 50px;
  margin-right: 5px;
  vertical-align: middle;
}

.profile-avatar {
  position: relative;
  padding: 6px 0px;
  border-bottom: 1px solid #e8e8e8;
}
.profile-avatar .es-tenure {
  font-size: 11px;
  color: #a09696;
  margin-left: 5px;
  align-items: center;
  display: flex;
}
.profile-avatar .es-sentimental img {
  width: 19px;
  margin-left: 8px;
  position: absolute;
  right: 0;
  bottom: 38px;
}
.profile-avatar .es-sentimental .success {
  font-size: 10px !important;
}
.profile-avatar .profile_status {
  position: absolute;
  bottom: -3px;
  left: 33px;
  background-color: #1cc21c;
  height: 12px;
  width: 12px;
  border-radius: 50px;
  border: 2px solid #fff;
}
.profile-avatar h4, .profile-avatar .h4 {
  margin: 0 0 4px 0;
  font-size: 13px;
}

.es-company-avatar-img {
  height: 50px;
  width: 50px;
  border-radius: 2px;
  border: 1px solid #e5e5e5;
  position: relative;
  background-color: #fff;
  color: #f7813d;
  text-align: center;
  line-height: 38px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  align-items: center !important;
  line-height: normal;
  margin-bottom: 6px;
  overflow: hidden;
}
.es-company-avatar-img img {
  height: 50px;
  width: 50px;
}

.es-crm-widget-topsec h5:hover, .es-crm-widget-topsec .h5:hover {
  color: #F7813D;
}

.es-user-avatar-img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  position: relative;
  background-color: #fff;
  color: #f7813d;
  text-align: center;
  line-height: 38px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  align-items: center !important;
  line-height: 50px;
  margin-bottom: 6px;
}
.es-user-avatar-img img {
  height: 44px;
  width: 44px;
}

.es-flyout-base-wrap {
  display: block !important;
  position: fixed;
  top: 50%;
  right: -100%;
  width: 764px;
  height: calc(100% - 40px);
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 999999;
  transition: all 1s ease-in-out;
  border-radius: 6px;
  transform: translateY(-50%);
}
.es-flyout-base-wrap iframe {
  width: 100%;
  height: 100%;
}
.es-flyout-base-wrap .es-flyout-closeBtn {
  position: absolute;
  top: 4px;
  right: 10px;
  cursor: pointer;
  border: none;
  background: none;
  font-size: 24px;
}

body.flyout-opened .es-popout.v2.evt-company-card {
  display: none;
}

.es-flyout-iframe-popup {
  /* Initially off-screen */
}
.es-flyout-iframe-popup .es-flyout-profile-info .es-emotions {
  position: absolute;
  align-self: flex-end;
  bottom: 30px;
  right: 0;
}
@media only screen and (max-width: 750px) {
  .es-flyout-iframe-popup .es-flyout-popup-content .es-summary-card > div.col-6 {
    width: 100%;
  }
}
.es-flyout-iframe-popup .es-flyout-popup-content .es-flyout-card .es-flyout-card-body .es-modal-fixed-header .es-flyout-head .es-flyout-profile-info > .es-flex-between-start > div:first-child {
  flex: 1;
}
.es-flyout-iframe-popup .es-flyout-popup-content .es-flyout-card .es-flyout-card-body .es-modal-fixed-header .es-flyout-head .es-flyout-profile-info .es-flex-start.justify-content-between {
  flex-wrap: wrap;
}
.es-flyout-iframe-popup .es-flyout-popup-content .es-card-body .table-responsive.es-datatable {
  overflow-x: visible;
}
.es-flyout-iframe-popup .es-flyout-popup-content .es-card-body .info-card table {
  width: 100%;
}
.es-flyout-iframe-popup .es-flyout-popup-content .es-card-body .info-card.client-contact-card table td > span {
  display: inline-block;
  word-break: break-all;
}
.es-flyout-iframe-popup .es-flyout-popup-content .es-card-body .info-card .info-card-content table .es-sentimental-by-on span.feedback-ellipses {
  max-width: 268px;
}
.es-flyout-iframe-popup .es-flyout-popup-content .es-card-body .info-card .info-card-content table .es-sentimental-by-on .es-flex-start {
  flex-wrap: wrap;
}
.es-flyout-iframe-popup .es-flyout-popup-content .es-card-body .info-card .info-card-content table .es-sentimental-by-on .es-flex-start p {
  flex: 0 0 100%;
  max-width: 100%;
  margin-left: 0 !important;
}
.es-flyout-iframe-popup .es-flyout-popup-content .es-card-body .es-activity .activity_body .activity_header {
  flex-wrap: wrap;
}
.es-flyout-iframe-popup .es-flyout-popup-content .es-card-body .es-activity .activity_body .activity_header .topic {
  padding-right: 6px;
}
.es-flyout-iframe-popup .es-flyout-popup-content .es-card-body .es-activity .activity_body .activity_header .activity_info {
  padding-left: 0;
}
.es-flyout-iframe-popup .es-flyout-popup-content .es-card-body .es-datatable .table-filters .es-datatable-filter {
  flex: 0;
  max-width: 100%;
}
.es-flyout-iframe-popup .es-flyout-popup-content .info-card-content table tr td .es-card-email-id .es-email-text {
  display: inline-block;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  vertical-align: middle;
}
.es-flyout-iframe-popup .es-flyout-popup-content .info-card-content table tr td .es-card-email-id i.ri-file-copy-line {
  vertical-align: middle;
}
.es-flyout-iframe-popup .es-flyout-popup-content .es-flyout-card.px-3 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}
.es-flyout-iframe-popup .es-flyout-popup-content .crm-widget .evt-client-account div {
  margin-top: 0 !important;
}
.es-flyout-iframe-popup .es-flyout-popup-content .es-action-btn .es-file-action-link {
  border: 1px solid #ccc;
  margin-left: 10px;
  width: 32px;
  height: 32px;
  display: inline-block;
  padding: 5px;
  line-height: 22px;
  text-align: center;
  cursor: pointer;
  border-radius: 2px;
}
.es-flyout-iframe-popup .es-flyout-popup-content .es-action-btn .es-file-action-link i {
  font-size: 16px;
}
.es-flyout-iframe-popup .es-flyout-popup-content .es-action-btn .es-file-action-link:hover {
  border-color: #F7813D;
}
.es-flyout-iframe-popup .es-flyout-popup-content .es-action-btn .es-file-action-link:hover i {
  color: #F7813D;
}
.es-flyout-iframe-popup .es-flyout-popup-content #SentimentList_wrapper .table-filters .es-datatable-filter select.form-control {
  width: 120px !important;
}
.es-flyout-iframe-popup .es-flyout-popup-content #SentimentList_wrapper table thead th {
  padding: 0.5rem 20px 0.5rem 0.5rem !important;
}
.es-flyout-iframe-popup .es-flyout-popup-content #SentimentList_wrapper .dataTables_paginate {
  justify-content: end !important;
}
.es-flyout-iframe-popup .es-flyout-body-content .es-card-body .activity-dropdown-filter .select2-container {
  width: 120px !important;
}
.es-flyout-iframe-popup .es-flyout-head .es-flyout-profile-info .user-status {
  padding: 1px 10px 2px 10px !important;
  margin-left: 0px;
  font-size: 11px;
  background: #fff;
}
.es-flyout-iframe-popup .es-flyout-head .es-flyout-profile-info p.evt-content-copy {
  position: relative;
  padding-right: 12px;
}
.es-flyout-iframe-popup .es-flyout-head .es-flyout-profile-info p.evt-content-copy i.ri-file-copy-line {
  position: absolute;
  right: 0;
}
.es-flyout-iframe-popup .es-flyout-head .es-flyout-profile-info .client-status-mrg {
  margin-left: 0 !important;
  flex: 0 0 100%;
  max-width: 100%;
}
.es-flyout-iframe-popup .list li label {
  display: block;
}
.es-flyout-iframe-popup .list li .es-acc-email {
  position: relative;
  display: inline-block;
}
.es-flyout-iframe-popup .list li .es-acc-email span {
  display: inline-block;
  padding-right: 12px;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.es-flyout-iframe-popup .list li .es-acc-email i {
  position: absolute;
  right: 0;
  cursor: pointer;
}
.es-flyout-iframe-popup .es-modal-fixed-header .es-flyout-head {
  position: relative;
  margin-bottom: 0px;
  display: flex;
  border-bottom: 1px solid #e6e6e6;
  padding: 10px;
  background-color: #f3f6f9;
  margin-top: 29px;
}
.es-flyout-iframe-popup .es-modal-fixed-header .es-flyout-head .es-client-left-section {
  flex: 0 0 80px;
}
.es-flyout-iframe-popup .es-modal-fixed-header .es-flyout-head .es-client-left-section .client-avatar {
  border-radius: 10px;
  background: #fff;
  height: 71px;
  flex: 0 0 80px;
  max-width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  position: relative;
}
.es-flyout-iframe-popup .es-modal-fixed-header .es-flyout-head .es-client-left-section .client-avatar::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  background-color: #fff;
  opacity: 0.65;
  visibility: hidden;
  transition: all 0.3s ease-out;
}
.es-flyout-iframe-popup .es-modal-fixed-header .es-flyout-head .es-client-left-section .client-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.es-flyout-iframe-popup .es-modal-fixed-header .es-flyout-head .es-flyout-profile-info {
  flex: 1;
  position: relative;
  padding-top: 5px;
}
.es-flyout-iframe-popup .es-modal-fixed-header .es-flyout-head .es-flyout-profile-info .es-client-company-name i.ri-file-copy-line {
  position: static;
  margin-left: 2px;
  margin-top: 1px;
}
.es-flyout-iframe-popup .es-modal-fixed-header .es-flyout-head .es-flyout-profile-info .es-sentimental-flyout img {
  width: 20px;
}
.es-flyout-iframe-popup .es-modal-fixed-header .es-flyout-head .es-flyout-profile-info .es-client-company-name {
  font-size: 13px;
}
.es-flyout-iframe-popup .es-modal-fixed-header .es-flyout-head .es-flyout-profile-info .icons {
  position: absolute;
  right: -14px;
  cursor: pointer;
  top: 52px;
}
.es-flyout-iframe-popup .es-modal-fixed-header .es-flyout-head .es-flyout-profile-info .client-status-mrg {
  margin-top: 9px;
}
.es-flyout-iframe-popup .es-modal-fixed-header .es-flyout-head .es-flyout-profile-info .client-status-mrg span.client-status {
  padding: 1px 10px 2px 10px !important;
  margin-left: 0px;
  font-size: 11px;
  background: #fff;
}
.es-flyout-iframe-popup .es-modal-fixed-header .es-flyout-head .es-flyout-profile-info .client-status-mrg .es-success {
  border: 2px solid #d6e9c6;
  color: #3c763d;
  border-radius: 2px;
  font-weight: 600;
}
.es-flyout-iframe-popup .es-modal-fixed-header .es-flyout-head .es-flyout-profile-info .client-status-mrg .es-inactive {
  border: 2px solid #ebccd1;
  border-radius: 32px;
  color: #a94442;
  font-weight: 600;
}
.es-flyout-iframe-popup .es-modal-fixed-header .es-flyout-head .es-flyout-profile-info p {
  margin-bottom: 6px;
  display: flex;
  font-size: 11px;
  line-height: normal;
  color: #495057;
}
.es-flyout-iframe-popup .es-modal-fixed-header .es-flyout-head .es-flyout-profile-info .user-status-mrg {
  margin-top: 18px;
}
.es-flyout-iframe-popup .es-modal-fixed-header .list {
  background-color: #f3f6f9;
}
.es-flyout-iframe-popup .es-modal-fixed-header .list ul {
  list-style: none;
  padding-left: 10px;
}
@media only screen and (max-width: 767px) {
  .es-flyout-iframe-popup .es-modal-fixed-header .list ul {
    flex-wrap: wrap;
    justify-content: start !important;
  }
}
.es-flyout-iframe-popup .es-modal-fixed-header .list ul li {
  padding: 13px 27px 13px 0px;
}
@media only screen and (max-width: 1024px) {
  .es-flyout-iframe-popup .es-modal-fixed-header .list ul li {
    padding: 10px 15px 10px 0px;
  }
}
.es-flyout-iframe-popup .es-modal-fixed-header .list ul li span {
  font-size: 12px !important;
}
.es-flyout-iframe-popup .icon {
  cursor: pointer;
}
.es-flyout-iframe-popup .es-flyout-closeBtn {
  position: absolute;
  top: 4px;
  right: 10px;
  cursor: pointer;
  border: none;
  background: none;
  font-size: 24px;
  display: none;
}
.es-flyout-iframe-popup .es-flyout-body-content {
  max-height: calc(100vh - 250px);
  overflow-y: auto;
  overflow-x: hidden;
}
.es-flyout-iframe-popup .es-flyout-body-content .tab-content {
  margin-top: 10px;
}
.es-flyout-iframe-popup .es-flyout-card-body #star {
  margin-left: -5px !important;
  vertical-align: bottom !important;
  opacity: 0.5;
}
.es-flyout-iframe-popup .vl {
  margin: 8px !important;
  width: 2px;
  border-right: 1px solid #aaaaaa;
  height: 25px;
}
.es-flyout-iframe-popup .es-flyout-profile-list {
  padding-left: 0px;
}
.es-flyout-iframe-popup .es-flyout-profile-list li {
  border-right: 0;
  padding-right: 10px;
  margin-right: 10px;
  display: inline-flex;
  white-space: normal;
  margin-bottom: 6px;
}
.es-flyout-iframe-popup .es-flyout-profile-list li:last-child {
  border-right: 0;
  padding-right: 0;
  margin-right: 0;
}
.es-flyout-iframe-popup .es-flyout-card-footer {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}
.es-flyout-iframe-popup .es-client-info {
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 10px;
}
.es-flyout-iframe-popup .popout-info .btn-close {
  position: absolute;
  right: 18px;
  font-size: 12px;
}
.es-flyout-iframe-popup .popout-info .modal-content {
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  max-width: 400px;
  box-shadow: 0px 0px 14px -6px #8c8c8c;
  border: none;
}
.es-flyout-iframe-popup .popout-info .modal-header {
  padding: 10px;
  line-height: normal;
  justify-content: start;
}
.es-flyout-iframe-popup .popout-info .modal-header h5, .es-flyout-iframe-popup .popout-info .modal-header .h5 {
  font-size: 16px;
  margin: 0;
}
.es-flyout-iframe-popup .popout-info .modal-body {
  padding: 15px 10px;
}
.es-flyout-iframe-popup .popout-info .modal-body p {
  margin: 0;
  line-height: 22px;
  font-size: 14px;
}
.es-flyout-iframe-popup .popout-info .modal-footer {
  border: none;
  padding-top: 0;
}
.es-flyout-iframe-popup .popout-info .modal-footer .btn.cancel-popout-btn {
  font-size: 14px;
  color: #787878;
  margin: 0;
}
.es-flyout-iframe-popup .es-popout {
  background-color: #fff;
  box-shadow: 0 1px 0px 2px rgba(212, 212, 212, 0.1);
  border-radius: 2px;
  padding: 0px 0 0px;
  max-width: 350px;
  overflow: hidden;
}
.es-flyout-iframe-popup .popout-profile-head {
  align-items: start;
  margin: 8px 0 0;
  padding: 0 15px;
}
.es-flyout-iframe-popup .popout-profile-head svg.bi.bi-person-circle {
  height: 40px;
  width: 40px;
  opacity: 0.5;
  fill: #6b83b4;
  margin-top: 0;
}
.es-flyout-iframe-popup .profile-right-info {
  flex: 1;
}
.es-flyout-iframe-popup .profile-right-info h4, .es-flyout-iframe-popup .profile-right-info .h4 {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 16px;
  color: #212529;
}
.es-flyout-iframe-popup .profile-right-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.es-flyout-iframe-popup .profile-right-info ul li {
  display: flex;
  margin: 8px 0;
}
.es-flyout-iframe-popup .profile-right-info ul li label {
  flex: 0 0 122px;
  font-weight: 600;
}
.es-flyout-iframe-popup .profile-right-info {
  margin-top: 10px;
  padding-left: 0px;
}
.es-flyout-iframe-popup .profile-right-info span small, .es-flyout-iframe-popup .profile-right-info span .small {
  background-color: #eceae9;
  display: inline-block;
  font-size: 11px;
  color: #212529;
  padding: 2px 4px;
  border-radius: 2px;
  line-height: normal;
  font-weight: 500;
}
.es-flyout-iframe-popup .popout-body h5, .es-flyout-iframe-popup .popout-body .h5 {
  font-size: 14px;
  margin-bottom: 4px;
}
.es-flyout-iframe-popup .popout-body {
  margin-top: 10px;
  padding: 0 15px;
}
.es-flyout-iframe-popup .popout-body > span {
  font-size: 13px;
}
.es-flyout-iframe-popup .popout-profile-head .dropdown button.dropdown-toggle {
  border: none;
  padding: 0;
  display: inline-block;
}
.es-flyout-iframe-popup .popout-profile-head .dropdown button.dropdown-toggle::after {
  content: none;
}
.es-flyout-iframe-popup .popout-profile-head .dropdown button.dropdown-toggle:focus {
  box-shadow: none !important;
}
.es-flyout-iframe-popup .popout-profile-head .dropdown ul.dropdown-menu {
  border: none;
  box-shadow: 0px 0px 9px -2px #ccc;
}
.es-flyout-iframe-popup .popout-profile-head .dropdown ul.dropdown-menu {
  line-height: normal;
  padding: 8px 0;
}
.es-flyout-iframe-popup .popout-profile-head .dropdown ul.dropdown-menu li a:hover {
  background-color: transparent !important;
  color: #000;
}
.es-flyout-iframe-popup .popout-profile-head .dropdown ul.dropdown-menu li a {
  font-size: 13px;
  color: #666;
  padding: 2px 10px;
}
.es-flyout-iframe-popup .popout-body p {
  margin-bottom: 0;
}
.es-flyout-iframe-popup .popout-body ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.es-flyout-iframe-popup .popout-body p {
  margin-bottom: 0;
}
.es-flyout-iframe-popup .popout-body ul {
  padding: 0;
  margin: 7px 0 12px;
  list-style: none;
}
.es-flyout-iframe-popup .popout-body ul li {
  color: #333;
  margin: 3px 0;
}
.es-flyout-iframe-popup .popout-body .form-group textarea {
  font-size: 13px;
  border-radius: 3px;
  height: 66px;
  padding: 5px 10px;
}
.es-flyout-iframe-popup .popout-body .form-group textarea:focus {
  box-shadow: none;
}
.es-flyout-iframe-popup .popout-body form .form-group select {
  font-size: 13px;
  color: #666;
}
.es-flyout-iframe-popup .popout-body .form-group select {
  height: 30px;
  width: 100%;
  border-radius: 3px;
  font-size: 12px !important;
  padding: 0 10px;
}
.es-flyout-iframe-popup .popout-header-row h5, .es-flyout-iframe-popup .popout-header-row .h5 {
  font-size: 20px;
  color: #212529;
}
.es-flyout-iframe-popup .popout-header-row {
  border-bottom: 1px solid #e5e5e5;
  margin: -10px 0 15px;
  padding: 7px 15px 0;
  background-color: #fff;
}
.es-flyout-iframe-popup .popout_status {
  background-color: #aee9ae;
  color: green;
  border-radius: 2px;
  line-height: normal;
  padding: 0 6px 3px;
  position: relative;
}
.es-flyout-iframe-popup .popout_status::before {
  content: "";
  display: inline-block;
  height: 4px;
  width: 4px;
  background-color: green;
  border-radius: 50px;
  margin-right: 5px;
  vertical-align: middle;
}
.es-flyout-iframe-popup .profile-avatar {
  position: relative;
  padding: 6px 0px;
  border-bottom: 1px solid #e8e8e8;
}
.es-flyout-iframe-popup .profile-avatar .profile_status {
  position: absolute;
  bottom: -3px;
  left: 33px;
  background-color: #1cc21c;
  height: 12px;
  width: 12px;
  border-radius: 50px;
  border: 2px solid #fff;
}
.es-flyout-iframe-popup .profile-avatar h4, .es-flyout-iframe-popup .profile-avatar .h4 {
  margin: 0;
  font-size: 16px;
}
.es-flyout-iframe-popup .v2 .profile-right-info ul li label {
  flex: 0 0 100%;
  max-width: 100%;
  font-weight: normal;
  color: #212529 !important;
  font-size: 13px;
}
.es-flyout-iframe-popup .v2 .profile-right-info ul li:not(.full-info) {
  flex-wrap: wrap;
  flex: 0 0 50%;
  max-width: 50%;
}
.es-flyout-iframe-popup .es-popout.v2 .popout-profile-head {
  margin-top: 0 !important;
  padding-left: 6px;
  padding-right: 6px;
}
.es-flyout-iframe-popup .v2 .profile-right-info ul {
  display: flex;
  flex-wrap: wrap;
}
.es-flyout-iframe-popup .v2 .profile-right-info ul li {
  flex-wrap: wrap;
}
.es-flyout-iframe-popup .es-basic-poc {
  list-style: none;
  padding-left: 0px !important;
  flex-wrap: wrap;
}
.es-flyout-iframe-popup .es-basic-poc li {
  margin-right: 0;
  width: 50%;
  display: block;
  flex: 0 0 50%;
  max-width: 50%;
}
.es-flyout-iframe-popup .es-basic-poc li h6, .es-flyout-iframe-popup .es-basic-poc li .h6 {
  margin-bottom: 0px !important;
}
.es-flyout-iframe-popup .es-basic-poc {
  margin-left: 20px;
}
.es-flyout-iframe-popup .es-basic-poc li p {
  margin-bottom: 0px;
}
.es-flyout-iframe-popup .es-basic-poc li span {
  color: #868e96;
}
.es-flyout-iframe-popup .es-flyout-content {
  height: 200px;
  overflow-y: auto;
}
.es-flyout-iframe-popup .es-flyout-content h4, .es-flyout-iframe-popup .es-flyout-content .h4 {
  font-size: 20px !important;
}
.es-flyout-iframe-popup .es-flyout-content h5, .es-flyout-iframe-popup .es-flyout-content .h5 {
  font-size: 16px !important;
}
.es-flyout-iframe-popup .es-flyout-profile-list li i {
  margin-right: 8px;
}
.es-flyout-iframe-popup .es-client-info ul.es-flyout-profile-list {
  flex-wrap: wrap;
  justify-content: start;
}

.es-flyout-popup {
  display: block !important;
  position: fixed;
  top: 20px;
  right: -764px;
  /* Initially off-screen */
  width: 764px;
  height: calc(100% - 40px);
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 9000001;
  transition: all 1s ease-in-out;
  border-radius: 6px;
  overflow: hidden;
}
.es-flyout-popup .es-modal-fixed-header .es-flyout-head {
  position: relative;
  margin-bottom: 0px;
  display: flex;
  border-bottom: 1px solid #e6e6e6;
  padding: 10px;
  background-color: #f3f6f9;
  margin-top: 29px;
}
.es-flyout-popup .es-modal-fixed-header .es-flyout-head .es-client-left-section {
  flex: 0 0 80px;
}
.es-flyout-popup .es-modal-fixed-header .es-flyout-head .es-client-left-section .client-avatar {
  border-radius: 10px;
  background: #fff;
  height: 71px;
  flex: 0 0 80px;
  max-width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  position: relative;
}
.es-flyout-popup .es-modal-fixed-header .es-flyout-head .es-client-left-section .client-avatar::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  background-color: #fff;
  opacity: 0.65;
  visibility: hidden;
  transition: all 0.3s ease-out;
}
.es-flyout-popup .es-modal-fixed-header .es-flyout-head .es-client-left-section .client-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.es-flyout-popup .es-modal-fixed-header .es-flyout-head .es-flyout-profile-info {
  flex: 1;
  position: relative;
  padding-top: 5px;
}
.es-flyout-popup .es-modal-fixed-header .es-flyout-head .es-flyout-profile-info .es-sentimental-flyout img {
  width: 20px;
}
.es-flyout-popup .es-modal-fixed-header .es-flyout-head .es-flyout-profile-info .es-client-company-name {
  font-size: 13px;
}
.es-flyout-popup .es-modal-fixed-header .es-flyout-head .es-flyout-profile-info .icons {
  position: absolute;
  right: -14px;
  cursor: pointer;
  top: 52px;
}
.es-flyout-popup .es-modal-fixed-header .es-flyout-head .es-flyout-profile-info .client-status-mrg {
  margin-top: 9px;
}
.es-flyout-popup .es-modal-fixed-header .es-flyout-head .es-flyout-profile-info .client-status-mrg span.client-status {
  padding: 1px 10px 2px 10px !important;
  margin-left: 0px;
  font-size: 11px;
  background: #fff;
}
.es-flyout-popup .es-modal-fixed-header .es-flyout-head .es-flyout-profile-info .client-status-mrg .es-success {
  border: 2px solid #d6e9c6;
  color: #3c763d;
  border-radius: 2px;
  font-weight: 600;
}
.es-flyout-popup .es-modal-fixed-header .es-flyout-head .es-flyout-profile-info .client-status-mrg .es-inactive {
  border: 2px solid #ebccd1;
  border-radius: 32px;
  color: #a94442;
  font-weight: 600;
}
.es-flyout-popup .es-modal-fixed-header .es-flyout-head .es-flyout-profile-info p {
  margin-bottom: 6px;
  display: flex;
  font-size: 11px;
  line-height: normal;
  color: #495057;
}
.es-flyout-popup .es-modal-fixed-header .es-flyout-head .es-flyout-profile-info .user-status-mrg {
  margin-top: 18px;
}
.es-flyout-popup .es-modal-fixed-header .list {
  background-color: #f3f6f9;
}
.es-flyout-popup .es-modal-fixed-header .list ul {
  list-style: none;
  padding-left: 10px;
}
.es-flyout-popup .es-modal-fixed-header .list ul li {
  padding: 13px 27px 13px 0px;
}
.es-flyout-popup .es-modal-fixed-header .list ul li span {
  font-size: 12px !important;
}
.es-flyout-popup .icon {
  cursor: pointer;
}
.es-flyout-popup .es-flyout-closeBtn {
  position: absolute;
  top: 4px;
  right: 10px;
  cursor: pointer;
  border: none;
  background: none;
  font-size: 24px;
}
.es-flyout-popup .es-flyout-body-content {
  height: 500px;
  overflow-y: auto;
  overflow-x: hidden;
}
.es-flyout-popup .es-flyout-body-content .tab-content {
  margin-top: 10px;
}
.es-flyout-popup .es-flyout-card-body #star {
  margin-left: -5px !important;
  vertical-align: bottom !important;
  opacity: 0.5;
}
.es-flyout-popup .vl {
  margin: 8px !important;
  width: 2px;
  border-right: 1px solid #aaaaaa;
  height: 25px;
}
.es-flyout-popup .es-flyout-profile-list {
  padding-left: 0px;
}
.es-flyout-popup .es-flyout-profile-list li {
  border-right: 0;
  padding-right: 10px;
  margin-right: 10px;
  display: inline-flex;
  white-space: normal;
  margin-bottom: 6px;
}
.es-flyout-popup .es-flyout-profile-list li:last-child {
  border-right: 0;
  padding-right: 0;
  margin-right: 0;
}
.es-flyout-popup .es-flyout-card-footer {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}
.es-flyout-popup .es-client-info {
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 10px;
}
.es-flyout-popup .popout-info .btn-close {
  position: absolute;
  right: 18px;
  font-size: 12px;
}
.es-flyout-popup .popout-info .modal-content {
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  max-width: 400px;
  box-shadow: 0px 0px 14px -6px #8c8c8c;
  border: none;
}
.es-flyout-popup .popout-info .modal-header {
  padding: 10px;
  line-height: normal;
  justify-content: start;
}
.es-flyout-popup .popout-info .modal-header h5, .es-flyout-popup .popout-info .modal-header .h5 {
  font-size: 16px;
  margin: 0;
}
.es-flyout-popup .popout-info .modal-body {
  padding: 15px 10px;
}
.es-flyout-popup .popout-info .modal-body p {
  margin: 0;
  line-height: 22px;
  font-size: 14px;
}
.es-flyout-popup .popout-info .modal-footer {
  border: none;
  padding-top: 0;
}
.es-flyout-popup .popout-info .modal-footer .btn.cancel-popout-btn {
  font-size: 14px;
  color: #787878;
  margin: 0;
}
.es-flyout-popup .es-popout {
  background-color: #fff;
  box-shadow: 0 1px 0px 2px rgba(212, 212, 212, 0.1);
  border-radius: 2px;
  padding: 0px 0 0px;
  max-width: 350px;
  overflow: hidden;
}
.es-flyout-popup .popout-profile-head {
  align-items: start;
  margin: 8px 0 0;
  padding: 0 15px;
}
.es-flyout-popup .popout-profile-head svg.bi.bi-person-circle {
  height: 40px;
  width: 40px;
  opacity: 0.5;
  fill: #6b83b4;
  margin-top: 0;
}
.es-flyout-popup .profile-right-info {
  flex: 1;
}
.es-flyout-popup .profile-right-info h4, .es-flyout-popup .profile-right-info .h4 {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 16px;
  color: #212529;
}
.es-flyout-popup .profile-right-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.es-flyout-popup .profile-right-info ul li {
  display: flex;
  margin: 8px 0;
}
.es-flyout-popup .profile-right-info ul li label {
  flex: 0 0 122px;
  font-weight: 600;
}
.es-flyout-popup .profile-right-info {
  margin-top: 6px;
  padding-left: 0px;
}
.es-flyout-popup .profile-right-info span small, .es-flyout-popup .profile-right-info span .small {
  background-color: #eceae9;
  display: inline-block;
  font-size: 11px;
  color: #212529;
  padding: 2px 4px;
  border-radius: 2px;
  line-height: normal;
  font-weight: 500;
}
.es-flyout-popup .popout-body h5, .es-flyout-popup .popout-body .h5 {
  font-size: 14px;
  margin-bottom: 4px;
}
.es-flyout-popup .popout-body {
  margin-top: 10px;
  padding: 0 15px;
}
.es-flyout-popup .popout-body > span {
  font-size: 13px;
}
.es-flyout-popup .popout-profile-head .dropdown button.dropdown-toggle {
  border: none;
  padding: 0;
  display: inline-block;
}
.es-flyout-popup .popout-profile-head .dropdown button.dropdown-toggle::after {
  content: none;
}
.es-flyout-popup .popout-profile-head .dropdown button.dropdown-toggle:focus {
  box-shadow: none !important;
}
.es-flyout-popup .popout-profile-head .dropdown ul.dropdown-menu {
  border: none;
  box-shadow: 0px 0px 9px -2px #ccc;
}
.es-flyout-popup .popout-profile-head .dropdown ul.dropdown-menu {
  line-height: normal;
  padding: 8px 0;
}
.es-flyout-popup .popout-profile-head .dropdown ul.dropdown-menu li a:hover {
  background-color: transparent !important;
  color: #000;
}
.es-flyout-popup .popout-profile-head .dropdown ul.dropdown-menu li a {
  font-size: 13px;
  color: #666;
  padding: 2px 10px;
}
.es-flyout-popup .popout-body p {
  margin-bottom: 0;
}
.es-flyout-popup .popout-body ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.es-flyout-popup .popout-body p {
  margin-bottom: 0;
}
.es-flyout-popup .popout-body ul {
  padding: 0;
  margin: 7px 0 12px;
  list-style: none;
}
.es-flyout-popup .popout-body ul li {
  color: #333;
  margin: 3px 0;
}
.es-flyout-popup .popout-body .form-group textarea {
  font-size: 13px;
  border-radius: 3px;
  height: 66px;
  padding: 5px 10px;
}
.es-flyout-popup .popout-body .form-group textarea:focus {
  box-shadow: none;
}
.es-flyout-popup .popout-body form .form-group select {
  font-size: 13px;
  color: #666;
}
.es-flyout-popup .popout-body .form-group select {
  height: 30px;
  width: 100%;
  border-radius: 3px;
  font-size: 12px !important;
  padding: 0 10px;
}
.es-flyout-popup .popout-header-row h5, .es-flyout-popup .popout-header-row .h5 {
  font-size: 20px;
  color: #212529;
}
.es-flyout-popup .popout-header-row {
  border-bottom: 1px solid #e5e5e5;
  margin: -10px 0 15px;
  padding: 7px 15px 0;
  background-color: #fff;
}
.es-flyout-popup .popout_status {
  background-color: #aee9ae;
  color: green;
  border-radius: 2px;
  line-height: normal;
  padding: 0 6px 3px;
  position: relative;
}
.es-flyout-popup .popout_status::before {
  content: "";
  display: inline-block;
  height: 4px;
  width: 4px;
  background-color: green;
  border-radius: 50px;
  margin-right: 5px;
  vertical-align: middle;
}
.es-flyout-popup .profile-avatar {
  position: relative;
  padding: 6px 0px;
  border-bottom: 1px solid #e8e8e8;
}
.es-flyout-popup .profile-avatar .profile_status {
  position: absolute;
  bottom: -3px;
  left: 33px;
  background-color: #1cc21c;
  height: 12px;
  width: 12px;
  border-radius: 50px;
  border: 2px solid #fff;
}
.es-flyout-popup .profile-avatar h4, .es-flyout-popup .profile-avatar .h4 {
  margin: 0;
  font-size: 16px;
}
.es-flyout-popup .v2 .profile-right-info ul li label {
  flex: 0 0 100%;
  max-width: 100%;
  font-weight: normal;
  color: #212529 !important;
  font-size: 13px;
}
.es-flyout-popup .v2 .profile-right-info ul li:not(.full-info) {
  flex-wrap: wrap;
  flex: 0 0 50%;
  max-width: 50%;
}
.es-flyout-popup .es-popout.v2 .popout-profile-head {
  margin-top: 0 !important;
  padding-left: 6px;
  padding-right: 6px;
}
.es-flyout-popup .v2 .profile-right-info ul {
  display: flex;
  flex-wrap: wrap;
}
.es-flyout-popup .v2 .profile-right-info ul li {
  flex-wrap: wrap;
}
.es-flyout-popup .es-basic-poc {
  list-style: none;
  padding-left: 0px !important;
  flex-wrap: wrap;
}
.es-flyout-popup .es-basic-poc li {
  margin-right: 0;
  width: 50%;
  display: block;
  flex: 0 0 50%;
  max-width: 50%;
}
.es-flyout-popup .es-basic-poc li h6, .es-flyout-popup .es-basic-poc li .h6 {
  margin-bottom: 0px !important;
}
.es-flyout-popup .es-basic-poc {
  margin-left: 20px;
}
.es-flyout-popup .es-basic-poc li p {
  margin-bottom: 0px;
}
.es-flyout-popup .es-basic-poc li span {
  color: #868e96;
}
.es-flyout-popup .es-flyout-content {
  height: 200px;
  overflow-y: auto;
}
.es-flyout-popup .es-flyout-content h4, .es-flyout-popup .es-flyout-content .h4 {
  font-size: 20px !important;
}
.es-flyout-popup .es-flyout-content h5, .es-flyout-popup .es-flyout-content .h5 {
  font-size: 16px !important;
}
.es-flyout-popup .es-flyout-profile-list li i {
  margin-right: 8px;
}
.es-flyout-popup .es-client-info ul.es-flyout-profile-list {
  flex-wrap: wrap;
  justify-content: start;
}

.es-flyout-backdrop {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.65);
  z-index: 99999;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

body.flyout-opened {
  overflow: hidden;
}

.es-tabs .nav-tabs,
.es-tabs .nav-link:focus,
.es-tabs .nav-link:hover {
  color: #F7813D !important;
}
.es-tabs .nav-tabs li,
.es-tabs .nav-link:focus li,
.es-tabs .nav-link:hover li {
  list-style: none;
  margin-right: 4px;
}
.es-tabs .nav-tabs li .nav-link,
.es-tabs .nav-link:focus li .nav-link,
.es-tabs .nav-link:hover li .nav-link {
  border-width: 1px 1px 0px 1px !important;
  color: #495057;
  padding: 0.5rem 0.7rem !important;
  display: block;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  text-decoration: none;
  font-size: 13px !important;
  margin-top: 0;
  line-height: normal;
}
.es-tabs .nav-tabs li .nav-link.active, .es-tabs .nav-tabs li .nav-link:hover,
.es-tabs .nav-link:focus li .nav-link.active,
.es-tabs .nav-link:focus li .nav-link:hover,
.es-tabs .nav-link:hover li .nav-link.active,
.es-tabs .nav-link:hover li .nav-link:hover {
  border-width: 1px 1px 0 1px !important;
  background-color: #fff;
  border-color: #F7813D !important;
  color: #F7813D;
  border-bottom-color: #d5d7da !important;
}
.es-tabs .nav-tabs li .nav-link.active,
.es-tabs .nav-link:focus li .nav-link.active,
.es-tabs .nav-link:hover li .nav-link.active {
  font-weight: 600;
}
.es-tabs .es-card-header {
  align-items: flex-end;
}
.es-tabs .es-card-header .nav-tabs {
  border-bottom: none;
}

.es-confirm-content {
  font-size: 13px;
}
.es-confirm-content i,
.es-confirm-content i:hover {
  font-size: 50px;
  margin-bottom: 12px;
  color: #fb3939 !important;
  line-height: 38px;
  display: inline-block;
}

.es-lookup-setting .es-rule-remove {
  margin-top: -6px;
  margin-left: 3px;
}
.es-lookup-setting .es-rule-remove i {
  font-size: 16px;
}
.es-lookup-setting .es-lookup-switch input {
  margin-top: -6px !important;
}
.es-lookup-setting .form-group {
  position: relative;
  width: 100%;
}
.es-lookup-setting .form-group label {
  display: none;
}
.es-lookup-setting .form-group .es-drag-icon {
  margin-top: 6px;
  position: absolute;
  right: 4px;
  cursor: grab;
}
.es-lookup-setting .form-group .es-drag-icon i {
  color: inherit;
}
.es-lookup-setting .form-group input {
  padding-right: 20px;
}

.es-new-lookup {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
}
.es-new-lookup .form-group {
  margin: 0;
  width: 52.7%;
}
.es-new-lookup .form-check {
  margin-top: 5px;
  margin-left: 24px !important;
  margin-right: 3px;
}
.es-new-lookup .form-switch {
  padding-left: 2.5em !important;
}
.es-new-lookup .form-switch input {
  margin-top: 0 !important;
  margin-left: -2.5em !important;
}
.es-new-lookup a {
  margin-top: 4px;
}
.es-new-lookup a i {
  font-size: 16px;
}

.es-pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.es-pagination .es-pagination li.page-item {
  padding-right: 4px;
  margin: 0 3px;
}
.es-pagination li a.page-link {
  background-color: #E9ECEF;
  border-color: #fff;
  color: #6c757d;
  box-shadow: none !important;
  border-radius: 2px !important;
  padding: 5px 12px !important;
}
.es-pagination li.previous a.page-link, .es-pagination li.next a.page-link {
  background-color: transparent !important;
  border: none;
}
.es-pagination li.next a {
  padding-right: 0 !important;
}

.es-form-elements {
  border-top: 1px dotted #b9b5b5;
  margin-top: 20px;
  padding-top: 20px;
}

.es-btn-group {
  min-height: 30px;
  line-height: 18px;
  border-width: 1px 1px 1px 0;
  border-style: solid;
  border-color: #ced4da;
  min-width: 30px;
  padding: 0rem 0.85rem !important;
}
.es-btn-group:hover, .es-btn-group:focus, .es-btn-group:active {
  background-color: transparent !important;
  border-color: #ced4da !important;
}
.es-btn-group:hover i, .es-btn-group:focus i, .es-btn-group:active i {
  color: #F7813D !important;
}

.es-help-section code {
  font-size: 13px;
}

.es-file-filter {
  margin-left: 49px;
}
.es-file-filter select.form-control {
  width: 150px !important;
}

.popover {
  max-width: 400px;
}
.popover .popover-body {
  font-size: 11px;
  line-height: normal;
}
.popover .popover-body i.ri-file-copy-line {
  font-size: 13px;
}

.datepicker input {
  background-image: url("/img/calendar-line.png");
  background-size: 13px;
  background-position: 96%;
  background-repeat: no-repeat;
}

.datepicker {
  padding: 0 !important;
}

.es-crm-right-icons {
  margin-top: 15px;
}
@media only screen and (max-width: 767px) {
  .es-crm-right-icons {
    position: absolute;
    right: 10px;
  }
}
.es-crm-right-icons a {
  display: block;
  border: 1px solid #ccc;
  width: 32px;
  height: 32px;
  text-align: center;
  border-radius: 2px;
  margin-bottom: 10px;
  padding: 5px;
  margin-left: auto;
  font-size: 16px;
  line-height: normal;
}
@media only screen and (max-width: 767px) {
  .es-crm-right-icons a {
    width: 22px;
    height: 22px;
    padding: 5px;
    font-size: 12px;
    line-height: 11px;
  }
}
.es-crm-right-icons a:hover {
  border: 1px solid #F7813D;
  color: #F7813D;
}
.es-crm-right-icons a:hover i {
  color: #F7813D;
}

.es-invoice-head {
  width: 100% !important;
}
.es-invoice-head td {
  padding-top: 10px !important;
}

.es-invoice-border {
  border-top: 1px solid #ececec;
  margin-top: 8px;
}

.tenure-option,
.employee-tenure {
  font-size: 11px;
}

.es-flex-table-layout tr {
  width: 50%;
}
.es-flex-table-layout tr .es-email-text {
  font-size: 10px;
  padding-right: 0 !important;
}
.es-flex-table-layout tr .es-email-text.es-cem-email {
  min-width: 100%;
}
.es-flex-table-layout tr p {
  font-size: 11px;
  font-weight: 400;
  margin-bottom: 0px;
}
.es-flex-table-layout tr p small, .es-flex-table-layout tr p .small {
  color: #727171;
}
.es-flex-table-layout tr p .es-card-email-id .ri-file-copy-line {
  visibility: hidden;
}
.es-flex-table-layout tr p .es-card-email-id:hover .ri-file-copy-line {
  visibility: visible;
}

p.es-invoice-head {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
}

.es-choices-center .form-group {
  margin-bottom: 14px;
}

.es-switch-block .form-check.form-switch {
  padding-left: 0;
  margin-bottom: 10px;
  display: block;
}
.es-switch-block .form-check-label {
  margin-bottom: 0;
  vertical-align: middle;
  width: 100%;
}
.es-switch-block .form-check-input {
  height: 1.1rem !important;
  width: 3em !important;
  margin-left: 1px !important;
  vertical-align: middle;
  float: none;
}

p.es-invoice-head {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
}

i.ri-linkedin-box-fill,
i.ri-linkedin-box-fill:hover,
i.ri-linkedin-box-fill:focus {
  color: #0a66c2 !important;
}

.es-rating-popup .comment_area_group textarea {
  border: 1px solid #e7e7e7;
  margin: 0;
  height: 100px;
  border-radius: 4px;
  padding: 10px;
  font-size: 13px !important;
  font-weight: normal !important;
  resize: none;
  width: 100%;
}
.es-rating-popup .form-group {
  margin-top: 14px;
}
.es-rating-popup .form-group label {
  color: #212529;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  margin-bottom: 12px;
  font-size: 13px;
}
.es-rating-popup .form-group .rate_emoji {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}
.es-rating-popup .form-group .rate_emoji label {
  display: flex;
  flex-direction: column;
  font-weight: 400;
  cursor: pointer;
  font-size: 1em;
  color: #666;
  margin-right: 32px;
}
.es-rating-popup .form-group .rate_emoji label img {
  font-size: 2.5rem !important;
  filter: grayscale(1);
  color: #999999;
  transition: all 0.3s ease-out;
  opacity: 0.65;
}
.es-rating-popup .form-group .rate_emoji label img.ri-emotion-unhappy-fill:hover {
  color: #ff3334;
}
.es-rating-popup .form-group .rate_emoji label img.ri-emotion-happy-fill:hover {
  color: #ffe121;
}
.es-rating-popup .form-group .rate_emoji label img.ri-emotion-fill:hover {
  color: #00b446;
}
.es-rating-popup .form-group .rate_emoji label img:hover {
  transform: scale(1.2);
  filter: grayscale(0);
  opacity: 1;
}
.es-rating-popup .form-group .rate_emoji label input {
  display: none;
}
.es-rating-popup .form-group .rate_emoji label input:checked + img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.2);
}
.es-rating-popup .form-group .rate_emoji label input:checked + img.ri-emotion-unhappy-fill {
  color: #ff3334;
}
.es-rating-popup .form-group .rate_emoji label input:checked + img.ri-emotion-happy-fill {
  color: #ffe121;
}
.es-rating-popup .form-group .rate_emoji label input:checked + img.ri-emotion-fill {
  color: #00b446;
}

.es-sentimental-modal i {
  font-size: 16px;
}
.es-sentimental-modal .modal-content .modal-body {
  margin-top: 0 !important;
}
.es-sentimental-modal .modal-content .modal-body .es-rating-popup .comment_area_group .es-textarea {
  margin-bottom: 0;
}

.es-action-card-onclick {
  cursor: pointer;
  border: 1px solid #e7e7e7;
  border-radius: 2px;
  box-shadow: none !important;
  min-height: 128px;
  height: calc(100% - 20px);
}
.es-action-card-onclick p {
  margin-bottom: 0;
}
.es-action-card-onclick .card-body .form-switch input {
  margin-top: 0px;
}
.es-action-card-onclick h4, .es-action-card-onclick .h4 {
  font-size: 14px;
}
.es-action-card-onclick .es-action-edit-icon {
  position: absolute;
  right: 9px;
  font-size: 21px;
  bottom: 6px;
}
.es-action-card-onclick .es-action-edit-icon img {
  width: 18px;
}
.es-action-card-onclick:hover {
  background-color: #f7f7f7;
}
.es-action-card-onclick .action-card-header {
  border-left-color: #fff !important;
}

.es-website {
  margin-top: -3px;
  width: 16px;
}
.es-website img {
  width: 14px;
  margin-top: -5px;
  border-radius: 2px;
}

.es-crunch-base {
  margin-top: -3px;
  width: 14px;
  margin-right: 2px;
}
.es-crunch-base a img {
  width: 14px;
  margin-top: -5px;
  border-radius: 2px;
}

.es-salesforce-mg {
  margin-top: 0px !important;
  margin-right: 4px;
}

.es-salesforce {
  margin-top: -3px;
  width: 14px;
  margin-right: 2px;
}
.es-salesforce a img {
  width: 14px;
  margin-top: -5px;
  border-radius: 2px;
}

.es-sentimental-size {
  width: 20px;
}

.es-add-emotion-fill img {
  visibility: hidden;
}
.es-add-emotion-fill:hover img {
  visibility: visible;
}

.es-emotions {
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
}
.es-emotions .es-sentimental-modal {
  margin-right: 4px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  opacity: 0;
  text-align: center;
  line-height: normal;
  padding: 2px 0;
}
.es-emotions .es-sentimental-modal i {
  font-size: 16px;
  color: #F7813D;
  line-height: normal;
}
.es-emotions .es-add-emotion-icon {
  transition: all 0.3s ease-in-out;
}
.es-emotions:hover .es-sentimental-modal {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.5411764706);
  width: 100%;
}

.es-summary-card {
  margin-top: 16px;
}

.es-files-loader {
  min-height: 295px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.es-files-loader .spinner-border {
  width: 1.5rem;
  height: 1.5rem;
  border-width: 3px;
}

i.es-ri-border {
  display: block;
  border: 1px solid #ccc;
  width: 32px;
  height: 31px;
  text-align: center;
  border-radius: 2px;
  margin-bottom: 10px;
  padding: 5px;
  margin-left: auto;
  font-size: 16px;
  line-height: normal;
}
i.es-ri-border:hover {
  border: 1px solid #F7813D;
  color: #F7813D;
}

.cu-filter-block.es-add {
  border: 1px solid #ccc;
  width: 32px;
  height: 32px;
  display: inline-block;
  padding: 5px;
  line-height: 22px;
  text-align: center;
  border-radius: 2px;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
}
.cu-filter-block.es-add:hover {
  border-color: #f7813d !important;
}
.cu-filter-block.es-add:hover i {
  color: #f7813d;
}

.cu-filter-block {
  margin: 33px 0px 3px 0;
  cursor: pointer;
  height: 27px;
  position: relative;
  top: 38px;
}
.cu-filter-block a {
  border: 1px solid #ccc;
  width: 32px;
  height: 32px;
  display: inline-block;
  padding: 5px;
  line-height: 22px;
  text-align: center;
}
.cu-filter-block a:hover {
  border-color: #F7813D;
}
.cu-filter-block a:hover i {
  color: #F7813D;
}
.cu-filter-block i {
  font-size: 16px;
}
.cu-filter-block .ticket-link {
  color: #0a58ca !important;
}
@media only screen and (max-width: 767px) {
  .cu-filter-block {
    margin-right: 0 !important;
  }
  .cu-filter-block a {
    font-size: 11px;
  }
  .cu-filter-block a i {
    margin-right: 2px !important;
  }
}
.cu-filter-block a {
  color: #343A40 !important;
}
.cu-filter-block.efs-add {
  top: -10px !important;
}

.cd__main {
  position: relative;
}

#calendar .fc-toolbar > div {
  width: 33.33%;
}
#calendar .fc-toolbar .fc-center {
  text-align: center;
}
#calendar .fc-toolbar.fc-header-toolbar {
  margin-bottom: 10px;
  padding: 0 5px;
}
#calendar .fc-toolbar.fc-header-toolbar button.fc-customButton-button {
  display: block;
  border: 1px solid #ccc;
  width: 32px;
  height: 32px;
  text-align: center;
  border-radius: 2px;
  margin-bottom: 0;
  padding: 5px;
  margin-left: auto;
  line-height: normal;
  font-size: 0;
  background-color: transparent !important;
}
#calendar .fc-toolbar.fc-header-toolbar button.fc-customButton-button::before {
  content: "\ea13";
  font-family: "remixicon" !important;
  font-size: 14px;
  color: #868E96;
}
#calendar .fc-toolbar.fc-header-toolbar button.fc-customButton-button:focus {
  box-shadow: none !important;
}
#calendar .fc-toolbar.fc-header-toolbar .fc-button-group .fc-button.fc-button-primary {
  background-color: transparent;
  border: none;
  color: #343A40;
  font-size: 12px !important;
  line-height: normal;
}
#calendar .fc-toolbar.fc-header-toolbar .fc-button-group .fc-button.fc-button-primary.fc-today-button {
  text-transform: capitalize;
}
#calendar .fc-toolbar.fc-header-toolbar .fc-button-group .fc-button.fc-button-primary:focus {
  box-shadow: none !important;
}
#calendar .fc-toolbar.fc-header-toolbar .fc-button-group .fc-button.fc-button-primary .fc-icon {
  color: #868E96;
}

.fc-event {
  border: 1px solid #eee !important;
}

.fc-content {
  padding: 3px !important;
}
.fc-content .fc-title {
  display: block !important;
  overflow: hidden;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}

.form-group {
  margin-bottom: 1rem;
}
.form-group > label {
  margin-bottom: 10px;
}

#delete-modal .modal-footer > .btn {
  border-radius: 3px !important;
  padding: 0px 8px !important;
  font-size: 15px;
}

.fc-scroller {
  overflow-y: hidden !important;
}

.context-menu {
  position: absolute;
  z-index: 1000;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
  padding: 5px;
}
.context-menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.context-menu ul > li {
  display: block;
  padding: 5px 15px;
  list-style-type: none;
  color: #333;
  display: block;
  cursor: pointer;
  margin: 0 auto;
  transition: 0.1s;
  font-size: 13px;
}
.context-menu ul > li:hover {
  color: #fff;
  background-color: #007bff;
  border-radius: 2px;
}

.fa,
.fas {
  font-size: 13px;
  margin-right: 4px;
}

.calendar-head {
  width: 100%;
  border-bottom: 1px solid #DFDFDF;
  padding: 10px 15px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.calendar-head h6, .calendar-head .h6 {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
}

.fc-toolbar.fc-header-toolbar h2, .fc-toolbar.fc-header-toolbar .h2 {
  font-size: 14px;
  font-weight: normal;
}

.es-calendar-section {
  min-height: 490px;
}
.es-calendar-section #calendar {
  border: none;
  padding: 0px;
}
.es-calendar-section .fc-view-container .fc-view > table > thead.fc-head > tr .fc-row.fc-widget-header {
  background-color: #F8F9FA;
}
.es-calendar-section .fc-view-container .fc-view > table > thead.fc-head > tr .fc-row.fc-widget-header th {
  font-weight: 500;
  font-size: 14px;
  padding: 10px 0;
  line-height: normal;
}
.es-calendar-section .fc-view-container .fc-view .fc-event-container .fc-day-grid-event {
  cursor: auto;
}

.profile-avatar > div:last-child {
  flex: 1;
}

.es-client-name-email {
  flex: 1;
}
.es-client-name-email .popover-client-code {
  font-size: 11px;
}
.es-client-name-email .client-tenure {
  font-size: 11px;
}

.evt-copy-to-clipboard {
  cursor: pointer;
}

.es-status-border {
  border-left: 2px solid #eaeaea;
  padding-left: 9px;
}

.es-sentimental-sum {
  list-style: none;
  margin-left: 0px;
  padding-left: 0px;
  text-align: center;
}
.es-sentimental-sum img {
  width: 21px;
}
.es-sentimental-sum li {
  float: left;
  padding-right: 18px;
}
.es-sentimental-sum p {
  margin-bottom: 0px;
  padding-bottom: 0px;
  font-size: 11px;
  color: #495057;
  padding-top: 3px;
}

.calendar-card-content .es-calendar-section .fc-view-container {
  padding: 0 5px 10px;
}
.calendar-card-content .es-calendar-section span.fc-day-number {
  padding: 10px !important;
}
.calendar-card-content .es-legend-set {
  display: flex;
  align-items: center;
  justify-content: center;
}
.calendar-card-content .es-legend-set div {
  display: flex;
  align-items: center;
  margin-right: 15px;
}
.calendar-card-content .es-legend-set div:last-child {
  margin-right: 0;
}
.calendar-card-content .es-legend-set div span {
  margin: 0 3px;
  display: inline-block;
}
.calendar-card-content .es-legend-set div .holder {
  height: 10px;
  width: 10px;
  background: red;
  border-radius: 2px;
}
.calendar-card-content .es-legend-set div .holder.es-holiday {
  background: #98b433;
}
.calendar-card-content .es-legend-set div .holder.es-optional-holiday, .calendar-card-content .es-legend-set div .holder.es-approved {
  background: #cb7cc0;
}
.calendar-card-content .es-legend-set div .holder.es-not-submitted {
  background: #ff8989;
}
.calendar-card-content .es-legend-set div .holder.es-not-approved {
  background: #fbc02d;
}

.es-search-panel {
  position: absolute;
  border-right: 1px solid rgba(223, 223, 223, 0.8);
  border-radius: 0;
  box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.0392156863);
  background-color: #fff;
  width: 100%;
  padding: 8px;
  border-left: 1px solid rgba(223, 223, 223, 0.8);
  border-bottom: 1px solid rgba(223, 223, 223, 0.8);
}
.es-search-panel ul.list-results {
  list-style: none;
  padding: 0;
  margin: 0;
}
.es-search-panel ul.list-results li {
  color: #343A40;
  font-weight: 500;
  padding: 5px 0;
}
.es-search-panel ul.list-results li a {
  font-weight: 400;
  color: #343A40;
}
.es-search-panel ul.list-results li a:hover {
  color: #f7813d;
}
.es-search-panel .search-results {
  display: flex;
  align-items: flex-start;
}
.es-search-panel .search-results ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
  width: calc(100% - 500px);
  border: 0;
}
.es-search-panel .search-results ul li .nav-link {
  background: none;
  padding: 4px 0;
  border: 0;
  color: #343A40;
}
.es-search-panel .search-results ul li .nav-link.active {
  color: #F7813D;
}
.es-search-panel .search-results .search-result-content {
  width: 500px;
  max-height: 600px;
  overflow-y: auto;
  padding-right: 10px;
  scrollbar-color: #6a6a6a #f8f9fa;
  scrollbar-width: thin;
  border-left: 1px solid #ebebeb;
  padding-left: 10px;
}
.es-search-panel .search-results .search-result-content .search-result-box .search-cat {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.es-search-panel .search-results .search-result-content .search-result-box .search-cat div {
  font-size: 14px;
  font-weight: 500;
  color: #F7813D;
}
.es-search-panel .search-results .search-result-content .search-result-box .search-cat a {
  color: #0a58ca;
  font-size: 10px;
}
.es-search-panel .search-results .search-result-content .search-result-box .search-cat a:hover {
  color: #f7813d;
}
.es-search-panel .search-results .search-result-content .search-result-box .es-no-data {
  color: #bababa;
  font-size: 12px;
}
.es-search-panel .search-results .search-result-content .search-result-box .search-list {
  padding: 1px 0 2px 6px;
  cursor: pointer;
}
.es-search-panel .search-results .search-result-content .search-result-box .search-list * {
  display: block;
  color: #0a58ca;
  font-weight: 400;
}
.es-search-panel .search-results .search-result-content .search-result-box .search-list small, .es-search-panel .search-results .search-result-content .search-result-box .search-list .small {
  font-size: 100%;
  color: #495057;
  font-weight: 400;
}
.es-search-panel .search-results .search-result-content .search-result-box .search-list:hover {
  background: #F8F9FA;
}
.es-search-panel .search-results .search-result-content .search-result-box + .search-result-box {
  margin-top: 12px;
}
.es-search-panel .search-results .spinner-border {
  width: 1.5rem;
  height: 1.5rem;
}

table.dataTable#example-datatable tbody tr:hover > * {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.075) !important;
}

.form-structure-sample .es-widget-wrap .card-body .es-col-form .form-group {
  margin-bottom: 1rem;
}

.topbar-user .dropdown-menu .dropdown-item.active,
.topbar-user .dropdown-menu .dropdown-item:active {
  color: var(--bs-dropdown-link-hover-color);
  text-decoration: none;
  background-color: #e9ecef;
}

.es-popout.v2.evt-personCard.sample-popout {
  transform: translate(0) !important;
}

.popout-same-wrap i {
  visibility: hidden;
}
.popout-same-wrap:hover i {
  visibility: visible;
}

.card-header-filter {
  position: absolute;
  right: 18px;
}

.es-count-widget .es-section-loader .spinner-border {
  width: 15px;
  height: 15px;
}

.es-flag-icon {
  width: 18px;
  cursor: auto;
}

.es-domain-list-row {
  cursor: pointer;
}

.evt-secure-view {
  padding: 0px !important;
}
.evt-secure-view i {
  font-size: 13px;
}

.select2-container--open .select2-dropdown {
  min-width: 200px;
}

.es-input-check {
  margin-right: 16px;
  margin-top: 5px;
}

.es-top-head-dropdown {
  border-bottom: 1px solid #ced4da;
}

.email-ellipses {
  position: relative;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: middle;
  padding-right: 16px;
  white-space: nowrap;
}

.email-ellipses i.ri-file-copy-line {
  position: absolute;
  right: 0;
  top: 0;
  background-color: #fff;
}

.list-stage-head h4 a.es-stage-link, .list-stage-head .h4 a.es-stage-link {
  cursor: auto;
}
.list-stage-head h4.list-view-card-action .coordinator-delete i, .list-stage-head .list-view-card-action.h4 .coordinator-delete i {
  font-size: 14px !important;
}
.list-stage-head h4.list-view-card-action .coordinator-edit, .list-stage-head .list-view-card-action.h4 .coordinator-edit {
  background-color: #868E96;
  display: inline-block;
  height: 12px;
  width: 12px;
  border-radius: 50px;
  position: relative;
  right: 0px;
  text-align: center;
  line-height: 12px;
}
.list-stage-head h4.list-view-card-action .coordinator-edit i, .list-stage-head .list-view-card-action.h4 .coordinator-edit i {
  font-size: 8px;
  color: #fff;
}

.es-coordinator-card > .card.crm-widget {
  background-color: transparent;
  box-shadow: none;
}
.es-coordinator-card .es-pipiline-card {
  border: 1px solid #DEE2E6;
  box-shadow: none;
  background-color: #fff;
  border-radius: 2px;
}
.es-coordinator-card .es-pipiline-card .es-delay-pipeline {
  border: 1px solid #FFEC99;
  color: #495057 !important;
  top: -2px;
  right: 26px;
  border-radius: 2px;
  height: 22px;
  padding: 2px 6px !important;
}
.es-coordinator-card .es-pipiline-card .es-delay-pipeline i {
  color: #E67700 !important;
  line-height: normal;
  padding: 0;
}
.es-coordinator-card .es-coordinator-icons {
  margin-right: 16px;
}
.es-coordinator-card .es-widget-card-coordinator {
  justify-content: space-between !important;
}
.es-coordinator-card .es-widget-card-coordinator .pipeline-col {
  flex: auto;
}
.es-coordinator-card .es-widget-card-coordinator .pipeline-col h4, .es-coordinator-card .es-widget-card-coordinator .pipeline-col .h4 {
  font-size: 13px;
  min-height: 20px;
}
.es-coordinator-card .es-widget-card-coordinator .pipeline-col .es-pipiline-card {
  justify-content: space-between;
}
.es-coordinator-card .es-widget-card-coordinator > div > div h5, .es-coordinator-card .es-widget-card-coordinator > div > div .h5 {
  font-size: 13px !important;
  margin-bottom: 2px;
}
.es-coordinator-card .es-widget-card-coordinator > div > div .progress {
  width: 145px;
  margin-right: -20px;
}
.es-coordinator-card .es-widget-card-coordinator a.es-edit-pipeline-info {
  position: absolute;
  top: -2px;
  right: 4px;
}
.es-coordinator-card i:hover {
  color: #F7813D;
}
.es-coordinator-card .coordinator-grid {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  overflow: auto;
  scrollbar-width: thin;
}
.es-coordinator-card .coordinator-grid::-webkit-scrollbar {
  height: 2px;
  width: 2px;
  background-color: #f5f5f5;
}
.es-coordinator-card .coordinator-grid::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border: 6px solid #ccc;
  border-radius: 10px;
}
.es-coordinator-card .coordinator-grid li {
  border: 1px solid #DEE2E6;
  background-color: #fff;
  border-radius: 2px;
  padding: 10px;
  flex: 0 0 244px;
  max-width: 244px;
  margin-right: 12px;
  margin-bottom: 12px;
  line-height: normal;
  cursor: pointer;
}
.es-coordinator-card .coordinator-grid li .coordinator-card-body .es-popout-show:hover img {
  opacity: 1;
}
.es-coordinator-card .coordinator-grid li a.coordinator-delete i {
  height: 15px;
  width: 15px;
  display: inline-block;
  font-size: 1.09rem;
  vertical-align: middle;
  line-height: 12px;
}
.es-coordinator-card .coordinator-grid li.active .es-edit-stage-icon {
  background-color: #fff;
  border-radius: 50%;
  color: #F7813D !important;
  width: 15px;
  height: 15px;
  font-size: 9px;
  text-align: center;
  align-items: center;
  display: inline-grid;
  position: relative;
  top: -2px;
}
.es-coordinator-card .coordinator-grid li.active .coordinator-card-body .progress-bar {
  background-color: #FCCDB1 !important;
}
.es-coordinator-card .coordinator-grid li.active .coordinator-card-body .es-popout-show a {
  color: #fff !important;
}
.es-coordinator-card .coordinator-grid li.active .coordinator-card-body .es-popout-show img.es-client-pop {
  filter: brightness(0) invert(1) !important;
}
.es-coordinator-card .coordinator-grid li .es-edit-stage-icon {
  background-color: #8c949b;
  border-radius: 50%;
  color: #fff !important;
  width: 15px;
  height: 15px;
  font-size: 9px;
  text-align: center;
  align-items: center;
  display: inline-grid;
  position: relative;
  top: -2px;
}
.es-coordinator-card .coordinator-grid li i {
  font-size: 14px;
}
.es-coordinator-card .coordinator-grid li i:hover {
  color: #F7813D;
}
.es-coordinator-card .coordinator-grid li .coordinator-card-head h4, .es-coordinator-card .coordinator-grid li .coordinator-card-head .h4 {
  font-weight: normal;
  font-size: 16px;
}
.es-coordinator-card .coordinator-grid li .coordinator-card-head a {
  display: inline-block;
  height: 14px;
  width: 14px;
  margin-left: 5px;
  vertical-align: middle;
}
.es-coordinator-card .coordinator-grid li .coordinator-card-head .es-stage-link {
  font-size: 16px;
}
.es-coordinator-card .coordinator-grid li .coordinator-card-body {
  margin-top: 5px;
  min-height: 32px;
}
.es-coordinator-card .coordinator-grid li .coordinator-card-body span a.es-stage-link {
  cursor: auto;
}
.es-coordinator-card .coordinator-grid li .coordinator-card-body .es-stage-role {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 177px;
}
.es-coordinator-card .coordinator-grid li .coordinator-card-body .es-progress-card span {
  font-size: 11px;
}
.es-coordinator-card .coordinator-grid li .coordinator-card-body .progress-bar {
  font-size: 0;
}
.es-coordinator-card .coordinator-grid li .coordinator-card-footer {
  border-top: 1px solid #DEE2E6;
  padding-top: 10px;
  margin-top: 8px;
}
.es-coordinator-card .coordinator-grid li .coordinator-card-footer a i.ri-add-circle-fill {
  font-size: 18px;
}
.es-coordinator-card .coordinator-grid li.active {
  background-color: #F7813D;
  color: #fff;
  border-color: transparent;
}
.es-coordinator-card .coordinator-grid li.active .coordinator-card-head h4, .es-coordinator-card .coordinator-grid li.active .coordinator-card-head .h4 {
  color: #fff;
}
.es-coordinator-card .coordinator-grid li.active i {
  color: #fff !important;
}
.es-coordinator-card .coordinator-list-view {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
}
.es-coordinator-card .coordinator-list-view li {
  background-color: #fff;
  writing-mode: vertical-rl;
  transform: rotateZ(180deg);
  min-height: 244px;
  border: 1px solid #DEE2E6;
  padding: 12px 6px;
  margin-right: 15px;
}
.es-coordinator-card .coordinator-list-view li.active {
  background-color: #F7813D;
  color: #fff;
  border-color: transparent;
}
.es-coordinator-card .coordinator-list-view li.active .list-stage-head h4, .es-coordinator-card .coordinator-list-view li.active .list-stage-head .h4 {
  color: #fff;
}
.es-coordinator-card .coordinator-list-view li.active .list-stage-head h4 .es-stage-link, .es-coordinator-card .coordinator-list-view li.active .list-stage-head .h4 .es-stage-link {
  cursor: auto;
}
.es-coordinator-card .coordinator-list-view li.active .coordinator-card-footer span {
  color: #fff !important;
}
.es-coordinator-card .coordinator-list-view li.active i {
  color: #fff !important;
}
.es-coordinator-card .coordinator-list-view li.active h4.list-view-card-action a.coordinator-edit, .es-coordinator-card .coordinator-list-view li.active .list-view-card-action.h4 a.coordinator-edit {
  background-color: #fff;
}
.es-coordinator-card .coordinator-list-view li.active h4.list-view-card-action a.coordinator-edit i, .es-coordinator-card .coordinator-list-view li.active .list-view-card-action.h4 a.coordinator-edit i {
  color: #F7813D !important;
}
.es-coordinator-card .coordinator-list-view li .list-stage-head h4, .es-coordinator-card .coordinator-list-view li .list-stage-head .h4 {
  font-weight: normal;
  margin: 0;
  font-size: 13px;
}
.es-coordinator-card .coordinator-list-view li .list-stage-head .coordinator-card-footer {
  margin: 0px 8px 0 0;
}
.es-coordinator-card .coordinator-list-view li .list-stage-head .coordinator-card-footer span {
  color: #343A40;
}
.es-coordinator-card .coordinator-list-view li .list-stage-head i:hover {
  color: #F7813D;
}

.topbar-user {
  font-size: 13px;
}
.topbar-user .dropdown-menu a {
  padding-left: 4px !important;
  font-size: 13px;
}
.topbar-user .dropdown-menu span h6, .topbar-user .dropdown-menu span .h6 {
  padding-left: 9px !important;
  padding-top: 0px !important;
}

.es-process-right-icons {
  text-align: right;
}
.es-process-right-icons > a {
  display: inline-block;
}

span.dropdown-avatar-item {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

span.dropdown-avatar-item i {
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 100px;
  height: 32px;
  width: 32px;
  display: flex;
  align-items: center;
  top: 0;
  color: #fff;
  justify-content: center;
  line-height: 32px;
  background-color: rgba(0, 0, 0, 0.7019607843);
  transition: all 0.2s ease-out;
  opacity: 0;
}

span.dropdown-avatar-item:hover i {
  opacity: 1;
}

span.dropdown-avatar-item img {
  margin-right: 0 !important;
}

.modal_custom_header button:hover i {
  color: #F7813D;
  border-color: #F7813D;
}

/*----------------------------------------- coordinator  ---------------------------------*/
.es-coordinator-template-head .show-service-item {
  font-size: 11px;
}
.es-coordinator-template-head i {
  margin-top: -1px;
  font-size: 16px;
  cursor: pointer;
  line-height: 100%;
}
.es-coordinator-template-head i:hover {
  color: #F7813D;
}
.es-coordinator-template-head i.evt-cancel-pipeline-icon {
  color: #F03E3E;
}

.evt-activity-list-data-pipeline .es-activity li {
  position: relative;
}

.es-activity-pipeline-filter {
  margin-bottom: 10px;
}
.es-activity-pipeline-filter select {
  margin-right: 10px;
}

.es-coordinator-page-content {
  background-color: #F8F9FA;
  min-height: calc(100vh - 272px);
}
.es-coordinator-page-content .coordinator-table-action i {
  font-size: 16px;
}
.es-coordinator-page-content .es-create-template {
  text-align: center;
}
.es-coordinator-page-content .es-create-template .es-template-section {
  position: relative;
  top: 22px;
}
.es-coordinator-page-content .es-create-template .es-template-section .es-template-img {
  height: 390px;
}
.es-coordinator-page-content .es-create-template .es-template-section .es-create-content {
  position: absolute;
  top: 50%;
  text-align: center;
  left: 50%;
  transform: translate(-50%);
}
.es-coordinator-page-content .es-create-template .es-template-section .es-create-content h6, .es-coordinator-page-content .es-create-template .es-template-section .es-create-content .h6 {
  margin-bottom: 0px;
  font-size: 24px;
  color: #343A40;
  font-weight: normal;
}
.es-coordinator-page-content .es-create-template .es-template-section .es-create-content p {
  margin-bottom: 0px;
  padding-bottom: 9px;
}
.es-coordinator-page-content .es-create-template .es-template-section .es-create-content a {
  color: #F7813D;
}
.es-coordinator-page-content .es-create-template.evt-no-stage-content {
  border-top: 1px solid #DEE2E6;
}

.offcanvas nav {
  padding: 0.7rem 1rem 5px;
}

.offcanvas.show {
  visibility: visible !important;
}

.offcanvas-header {
  background-color: #F1F1F1;
  border-bottom: 1px solid #DEE2E6;
  padding: 12px 1rem;
}
.offcanvas-header h5#offcanvasRightLabel, .offcanvas-header #offcanvasRightLabel.h5 {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  color: #343A40 !important;
}

.es-active-switch.form-switch {
  padding-left: 0rem !important;
}
.es-active-switch.form-switch input {
  margin-left: 10px;
}

.es-coordinator-card {
  padding: 15px;
  background-color: #F8F9FA;
  border-top: 1px solid #DEE2E6;
}
.es-coordinator-card .es-coordinator-card {
  padding: 0;
  border-top: 0;
}

.coordinator-card-head h4, .coordinator-card-head .h4 {
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 111px;
}
.coordinator-card-head h4 i, .coordinator-card-head .h4 i {
  font-size: 13px;
}
.coordinator-card-head h4 a, .coordinator-card-head .h4 a {
  font-size: 11px !important;
}

.tracker-tab-card .nav {
  border-right: 1px solid #dee2e6;
  padding-right: 15px;
}
.tracker-tab-card .nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tracker-tab-card .nav button.nav-link {
  padding: 4px 0;
  border-radius: 0;
  border-bottom: 2px solid transparent;
  font-size: 13px;
  margin: 4px 0;
  line-height: normal;
  text-align: left;
  color: #212529;
}
.tracker-tab-card .nav button.nav-link.active {
  background-color: transparent;
  border-bottom-color: #F7813D;
  color: #F7813D;
}
.tracker-tab-card .tab-content {
  flex: 1;
}

.coordinator-table {
  border: 1px solid #DEE2E6;
  padding: 10px 15px;
  background-color: #fff;
  margin-top: 8px !important;
}
.coordinator-table.tracker-table-column {
  padding: 6px 10px;
}
.coordinator-table .coordinator-card-head {
  border-bottom: 1px solid #DEE2E6;
  padding-bottom: 4px;
}
.coordinator-table .coordinator-card-head h4 a.es-stage-link, .coordinator-table .coordinator-card-head .h4 a.es-stage-link {
  color: #212529;
  font-size: 13px;
}
.coordinator-table table.es-files-tree {
  width: 100%;
}
.coordinator-table table.es-files-tree thead tr th {
  background-color: transparent;
  padding-top: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid #DEE2E6;
  font-weight: 500;
  color: #343A40;
}
.coordinator-table table.es-files-tree thead tr th .coordinator-list-arrow {
  cursor: pointer;
}
.coordinator-table table.es-files-tree tbody.documents-tab-content tr {
  position: relative;
}
.coordinator-table table.es-files-tree tbody.documents-tab-content tr:hover {
  background-color: #f8f9fa !important;
}
.coordinator-table table.es-files-tree tbody.documents-tab-content tr td {
  padding-top: 5px;
  padding-bottom: 5px;
}
.coordinator-table table.es-files-tree tbody.documents-tab-content tr td.component-name {
  width: 310px;
}
.coordinator-table table.es-files-tree tbody.documents-tab-content tr td.component-name .component-value.dir i {
  margin-right: 10px;
}
.coordinator-table table.es-files-tree tbody.documents-tab-content tr td.description-td-text {
  width: 362px;
  max-width: 362px;
}
.coordinator-table table.es-files-tree tbody.documents-tab-content tr td.description-td-text .description-ellipses {
  max-width: 85%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  vertical-align: middle;
  line-height: 18px;
}
.coordinator-table table.es-files-tree tbody.documents-tab-content tr td.folder-task-name {
  margin-left: 17px;
}
.coordinator-table table.es-files-tree tbody.documents-tab-content tr td.folder-task-name .internal-action {
  visibility: hidden;
}
.coordinator-table table.es-files-tree tbody.documents-tab-content tr td .component-value.dir {
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  vertical-align: middle;
  line-height: 18px;
}
.coordinator-table table.es-files-tree tbody.documents-tab-content tr td .component-value.dir span {
  max-width: 150px;
  display: inline-block;
  text-overflow: ellipsis;
  overflow: hidden;
  vertical-align: middle;
  margin-top: -3px;
  color: #343A40;
}
.coordinator-table table.es-files-tree tbody.documents-tab-content tr td .component-value.dir span::first-letter {
  text-transform: capitalize;
}
.coordinator-table table.es-files-tree tbody.documents-tab-content tr td .es-time {
  font-size: 12px;
}
.coordinator-table table.es-files-tree tbody.documents-tab-content tr:hover .folder-task-name .internal-action {
  visibility: visible;
}
.coordinator-table table.es-files-tree tbody.documents-tab-content .coordinator-list-arrow {
  font-size: 15px;
  cursor: pointer;
}
.coordinator-table table.es-files-tree tbody.documents-tab-content.open .coordinator-list-arrow {
  transform: rotate(90deg);
}
.coordinator-table table.es-files-tree tbody.documents-tab-content .table-name-action {
  display: flex;
  align-items: center;
}
.coordinator-table table.es-files-tree tbody.documents-tab-content .table-name-action .es-edit-group-task-icon {
  background-color: #868e96;
  border-radius: 50%;
  color: #fff;
  width: 15px;
  height: 15px;
  font-size: 9px;
  text-align: center;
  align-items: center;
  margin-top: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.coordinator-table table.es-files-tree tbody.documents-tab-content .table-name-action .es-edit-group-task-icon:hover {
  background-color: #F7813D;
}
.coordinator-table table.es-files-tree tbody.documents-tab-content .table-name-action > i {
  padding-left: 0 !important;
  margin-left: 6px !important;
  visibility: hidden;
  transition: all 0.2s ease-out !important;
  cursor: pointer;
  font-size: 1.09rem;
  line-height: normal;
}
.coordinator-table table.es-files-tree tbody.documents-tab-content .table-name-action > img {
  width: 11px;
  margin-left: 6px;
  visibility: hidden;
  transition: all 0.2s ease-out !important;
  cursor: pointer;
}
.coordinator-table table.es-files-tree tbody.documents-tab-content.open .folder .coordinator-list-arrow::before {
  content: "\ea4e";
}
.coordinator-table table.es-files-tree tbody.documents-tab-content.open .task-outer-wrap {
  display: table-row !important;
}

td.folder-task-name .table-name-action {
  display: inline-block;
}

.coordinator-table table.es-files-tree tbody.documents-tab-content .task-outer-wrap:last-child td {
  border-bottom: 2px solid #DEE2E6 !important;
}
.coordinator-table table.es-files-tree tbody.documents-tab-content .task-outer-wrap:last-child td:nth-child(2) {
  border-bottom-left-radius: 4px;
}
.coordinator-table table.es-files-tree tbody.documents-tab-content .task-outer-wrap:last-child td:last-child {
  border-bottom-right-radius: 4px;
}
.coordinator-table table.es-files-tree tbody.documents-tab-content .task-outer-wrap:hover {
  background-color: transparent !important;
}
.coordinator-table table.es-files-tree tbody.documents-tab-content .task-outer-wrap td {
  border-bottom: 1px solid #DEE2E6;
  position: relative;
}
.coordinator-table table.es-files-tree tbody.documents-tab-content .task-outer-wrap td:first-child {
  border: none !important;
}
.coordinator-table table.es-files-tree tbody.documents-tab-content .task-outer-wrap td.folder-task-name i {
  margin-left: 10px;
}
.coordinator-table table.es-files-tree tbody.documents-tab-content .task-outer-wrap:nth-child(2) td:nth-child(2) {
  border-top-left-radius: 4px;
}
.coordinator-table table.es-files-tree tbody.documents-tab-content .task-outer-wrap:nth-child(2) td:last-child {
  border-top-right-radius: 4px;
}
.coordinator-table table.es-files-tree tbody.documents-tab-content .task-outer-wrap:hover .table-name-action > i {
  visibility: visible;
}
.coordinator-table table.es-files-tree tbody.documents-tab-content tr td:first-child {
  width: 30px !important;
  background-color: transparent !important;
  border: 0 !important;
}
.coordinator-table table.es-files-tree tbody.documents-tab-content tr:last-child td {
  border-bottom: 0 !important;
}
.coordinator-table table.es-files-tree thead tr th:nth-child(2) {
  left: -21px;
}
.coordinator-table.es-template-coordinator table.es-files-tree tr td {
  width: 310px !important;
}
.coordinator-table.es-pipeline-coordinator table.es-files-tree tr td {
  width: 160px !important;
}
.documents-tab-content tr.folder:hover {
  background-color: transparent !important;
}
.documents-tab-content tr.folder:hover .table-name-action i {
  visibility: visible !important;
}

.es-coordinator-card .coordinator-grid li .es-progress-card .progress {
  height: 4px;
}

ul.task-outer-wrap {
  border-radius: 4px;
  border: 1px solid #E9ECEF;
  background: rgba(248, 249, 250, 0.5);
  padding: 0 10px !important;
  margin-top: 12px !important;
}
ul.task-outer-wrap li.task-inner-item {
  border-bottom: 1px solid #DEE2E6;
}
ul.task-outer-wrap li.task-inner-item:last-child {
  border-bottom: 0;
}

td.red {
  color: #F03E3E;
}

td.green {
  color: #0CA678;
}

.coordinator-table .show-service-item::after {
  content: none;
}

.show-service-item {
  font-size: 10px;
}

.es-task-note {
  background-color: #FFF9DB;
  padding: 15px 10px;
}
.es-task-note small, .es-task-note .small {
  font-style: italic;
  margin-left: 21px;
  margin-top: 0px;
  padding-top: 7px !important;
  display: block;
}
.es-task-note small i, .es-task-note .small i {
  cursor: pointer;
}

.form-group.form-check {
  margin-bottom: 0px !important;
}

.form-check label {
  color: #495057;
  font-weight: 400;
}

.offcanvas-body {
  padding: 0rem 1rem !important;
}
.offcanvas-body .activity-dropdown-filter span.select2 {
  width: 174px !important;
  margin-right: 10px;
}
.offcanvas-body .es-tabs div#nav-tabContent div#nav-task-type .es-datatable {
  border-top: 1px dashed #DEE2E6 !important;
  margin-top: 15px;
}
.offcanvas-body .es-tabs div#nav-tabContent div#nav-task-type .es-datatable .es-custom-popup-field-list {
  margin-bottom: 20px !important;
}
.offcanvas-body .es-tabs div#nav-tabContent div#nav-task-type .es-datatable .es-custom-popup-field-list tr th {
  color: #343A40;
  font-size: 13px;
  background-color: #F1F1F1;
  border-bottom: none;
}
.offcanvas-body .es-tabs div#nav-tabContent div#nav-task-type .es-datatable .es-custom-popup-field-list tr th:first-child {
  border-top-left-radius: 4px;
}
.offcanvas-body .es-tabs div#nav-tabContent div#nav-task-type .es-datatable .es-custom-popup-field-list tr th:last-child {
  border-top-right-radius: 4px;
}
.offcanvas-body .es-tabs div#nav-tabContent div#nav-task-type .es-datatable .es-custom-popup-field-list tbody {
  border: none;
}
.offcanvas-body .es-tabs div#nav-tabContent div#nav-task-type .es-datatable .es-custom-popup-field-list tbody tr {
  border: none !important;
}
.offcanvas-body .es-tabs div#nav-tabContent div#nav-task-type .es-datatable .es-custom-popup-field-list tbody tr td:first-child {
  border-left: 1px solid #F1F1F1;
}
.offcanvas-body .es-tabs div#nav-tabContent div#nav-task-type .es-datatable .es-custom-popup-field-list tbody tr td:last-child {
  border-right: 1px solid #F1F1F1;
}
.offcanvas-body .es-tabs div#nav-tabContent div#nav-task-type .es-datatable .es-custom-popup-field-list tbody tr:last-child td {
  border-bottom: 1px solid #F1F1F1;
}
.offcanvas-body .es-tabs div#nav-tabContent div#nav-task-type .es-datatable .es-custom-popup-field-list tbody tr:last-child td:first-child {
  border-bottom-left-radius: 4px;
}
.offcanvas-body .es-tabs div#nav-tabContent div#nav-task-type .es-datatable .es-custom-popup-field-list tbody tr:last-child td:last-child {
  border-bottom-right-radius: 4px;
}

body #one-notify {
  background-color: rgba(255, 255, 255, 0.5411764706);
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 999;
  top: 0;
}

.es-task-row ul {
  background-color: #f7f7f7;
  list-style: none;
  padding-top: 2px;
  padding-bottom: 2px;
}
.es-task-row ul li {
  padding: 2px 8px;
}

.recent-comments ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.recent-comments ul li {
  display: flex;
}
.recent-comments ul li picture {
  flex: 0 0 35px;
  max-width: 35px;
  border-radius: 50px;
  overflow: hidden;
  height: 35px;
  border: 2px solid #f1f1f1;
}
.recent-comments ul li picture img {
  height: 100%;
  width: 100%;
}
.recent-comments ul li .comment-user-name {
  padding-left: 12px;
  flex: 1;
}
.recent-comments ul li .comment-user-name h5, .recent-comments ul li .comment-user-name .h5 {
  font-weight: 500;
  font-size: 13px;
  margin-bottom: 0;
}
.recent-comments ul li .comment-user-name h5 span, .recent-comments ul li .comment-user-name .h5 span {
  font-weight: 400;
  color: #919090;
  font-size: 11px;
}

.uploaded-file-list {
  list-style: none;
}
.uploaded-file-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
  border-radius: 4px;
  padding: 6px 13px;
}
.uploaded-file-list li span .file-size-label {
  display: block;
  padding-left: 19px;
  font-size: 12px;
  color: #868E96;
  margin-top: 1px;
}
.uploaded-file-list li span.file-name-h i {
  margin-right: 6px;
}
.uploaded-file-list li .upload-file-action {
  opacity: 0;
  visibility: hidden;
}
.uploaded-file-list li .upload-file-action button {
  background-color: transparent;
  border: none;
  margin-left: 3px;
  padding: 0;
}
.uploaded-file-list li:hover {
  background-color: #F8F9FA;
}
.uploaded-file-list li:hover .upload-file-action {
  opacity: 1;
  visibility: visible;
}

#offcanvasRight {
  z-index: 9;
  padding: 112px 0 25px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.24);
  border: none;
}
@media only screen and (max-width: 767px) {
  #offcanvasRight {
    z-index: 99;
    padding: 0;
  }
}

#offcanvasRight + .offcanvas-backdrop {
  z-index: 1;
  background-color: #fff;
}

.datepicker table {
  border-collapse: separate;
  border-spacing: 1px;
}
.datepicker table tr td {
  border-radius: 4px !important;
  width: 30px;
  height: 26px;
}
.datepicker table tr td.active.active {
  background: #fff !important;
  background-repeat: repeat-x;
  border: 1px solid #f7813d !important;
  color: #f7813d !important;
  border-radius: 4px !important;
}
.datepicker table tr td.active.active.today.active {
  background: #f7813d !important;
  color: #fff !important;
  border-radius: 4px !important;
}

@media only screen and (max-width: 992px) {
  body footer {
    z-index: 0;
  }
  .es-template-left-builder .es-form-builder-nav-head {
    height: auto !important;
    padding: 5px 5px 0 5px !important;
  }
  .es-template-left-builder .es-form-builder-nav-head li a {
    font-size: 12px !important;
  }
  .content header .cu-filter-block {
    top: 0;
  }
  .es-row-wrap .evt-fiscal-year {
    width: 100%;
    flex-wrap: wrap;
  }
  .es-row-wrap .evt-fiscal-year .form-group {
    width: 100%;
  }
  .es-row-wrap .evt-fiscal-year .form-group label.form-label:empty {
    display: none;
  }
  .es-row-wrap .evt-fiscal-year .form-group select {
    margin-left: 0 !important;
  }
  .es-app-menu .mobile-toggle-menu {
    padding: 0;
    font-size: 20px;
    border: none;
  }
  .es-app-menu .mobile-toggle-menu i {
    color: #fff;
  }
  .es-app-menu nav.navbar {
    padding-top: 7px;
    display: flex !important;
    justify-content: space-between;
  }
  .es-app-menu nav.navbar > .collapse {
    display: flex;
    flex: 1;
    justify-content: end;
  }
  .es-app-menu nav.navbar > .collapse ul.navbar-nav {
    display: none;
    padding: 10px 0;
  }
  .es-app-menu nav.navbar .nav-item {
    position: relative;
    margin-right: 0;
    padding: 10px 15px;
  }
  .es-app-menu nav.navbar .es-mega-menu {
    z-index: 99;
  }
  .es-app-menu nav.navbar .es-mega-menu > .row > div {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding-right: 15px !important;
  }
  .es-app-menu nav.navbar .es-mega-menu > .row > div:last-child {
    padding-bottom: 15px;
  }
  .es-app-menu.open-mobile-menu .collapse .navbar-nav {
    display: block !important;
    position: absolute;
    top: 40px;
    width: 100%;
    background-color: #454545;
    border-top: 1px solid #6f6f6f;
  }
  .es-app-menu.open-mobile-menu .mobile-toggle-menu i::before {
    content: "\eb99";
  }
  .es-app-menu .es-meet-wiki {
    padding: 10px !important;
  }
  header.top-header .app-search.es-search-opened {
    width: 300px;
  }
  footer .footer-time-zone .es-time-zone {
    padding: 0 10px;
  }
  footer .footer-time-zone .es-time-zone ul {
    margin: 0;
  }
  footer .footer-time-zone .es-time-zone ul li {
    margin: 0 8px;
  }
  footer .footer-time-zone .es-time-zone ul li span {
    font-size: 11px;
  }
  footer .sidebar-footer i {
    height: 13px;
    display: inline-block;
    font-size: 14px !important;
    margin-top: 2px;
  }
  .es-flyout-base-wrap {
    width: 100%;
    max-width: 90%;
  }
  .es-dashboard-widget .crm-widget .card-body div.mt-3 {
    margin-top: 0 !important;
  }
  .es-dashboard-widget .es-action-cards .action-card-content .es-dashboard-task-list li table {
    display: block;
  }
  .es-dashboard-widget .es-action-cards .action-card-content .es-dashboard-task-list li table * {
    display: inline-block;
    width: auto;
  }
  .es-profile-card {
    padding: 0 8px !important;
  }
  .es-profile-card .es-profile-title {
    margin-left: -8px !important;
    margin-right: -8px !important;
  }
  .es-profile-card .user-profile-head {
    padding-top: 10px;
    padding-bottom: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .es-profile-card .user-profile-head .es-profile-info {
    padding-left: 0 !important;
    padding-top: 12px !important;
    flex: 0 0 100% !important;
    max-width: 100%;
  }
  .es-profile-card .user-profile-body .profile-body-item {
    width: 100% !important;
  }
  .es-profile-card .user-profile-body .profile-body-item ul li {
    margin: 6px 0 10px 0 !important;
  }
  .es-card-section .es-card-header {
    padding-bottom: 11px !important;
  }
  .es-card-section .es-card-body .es-crm-right-icons {
    padding-left: 0;
  }
  .es-card-section .es-card-body .activity-dropdown-filter .select2.select2-container {
    width: 100px !important;
  }
  .es-card-section .es-card-body .es-note-textarea {
    width: 190px;
  }
  .es-card-section .es-card-body .es-activity .activity_time span.date {
    font-size: 11px;
  }
  .es-card-section .es-card-body .es-activity .activity_body {
    margin-left: 152px;
    font-size: 11px;
  }
  .es-card-section .es-card-body .es-activity .activity_body .activity_header {
    flex-wrap: wrap;
  }
  .es-card-section .es-card-body .es-activity .activity_body .activity_header .topic {
    margin-right: 5px;
  }
  .es-card-section .es-card-body .es-activity .activity_body .activity_header .activity_info {
    padding-left: 0;
  }
  .es-card-section .es-card-body .es-activity .activity_body .activity_content table {
    font-size: 11px;
  }
  .es-card-section .es-card-body .card-body .es-action-cards .es-action-card-onclick {
    height: calc(100% - 15px);
    margin-bottom: 15px;
  }
  .es-card-section .es-card-body .card-body .es-action-cards .es-action-card-onclick .card-body {
    padding: 10px;
  }
  .es-card-section .es-card-body .card-body .es-action-cards .es-action-card-onclick .card-body h4, .es-card-section .es-card-body .card-body .es-action-cards .es-action-card-onclick .card-body .h4 {
    word-break: break-all;
    font-size: 13px;
  }
  .es-card-section .es-card-body .card-body .es-action-cards .es-action-card-onclick .card-body p {
    margin-bottom: 5px;
    font-size: 11px;
  }
  .es-card-section .es-card-body .es-tabs ul.nav-tabs li button.nav-link {
    font-size: 12px !important;
  }
  .es-card-section .es-card-body .es-crm-right-icons {
    right: 12px;
  }
  .es-card-section .es-card-body .es-widget-wrap .es-summary-card .es-action-cards table tbody {
    display: block !important;
  }
  .es-card-section .es-card-body .es-widget-wrap .es-summary-card .es-action-cards table tbody tr {
    display: block !important;
  }
  .es-card-section .es-card-body .es-widget-wrap .es-summary-card .es-action-cards table tbody tr td {
    display: block !important;
  }
  body footer {
    z-index: 0;
  }
}
@media screen and (max-width: 768px) {
  html {
    overflow-x: hidden;
  }
  html body {
    overflow-x: hidden;
  }
  #toast-container {
    right: 21px !important;
  }
  .es-popout-show img {
    display: none;
  }
  footer {
    height: auto;
    padding: 0 10px;
  }
  footer .footer-time-zone .es-time-zone {
    padding: 0;
  }
  footer .footer-time-zone .es-time-zone ul li {
    margin: 0px 4px;
  }
  .top-header {
    padding: 10px 15px;
  }
  .top-header .logo {
    position: static;
    transform: translate(0);
  }
  .top-header .es-dash-timer {
    margin-left: 0;
  }
  .top-header .es-dash-timer .title {
    font-size: 11px;
  }
  .top-header .es-dash-timer .subtitle {
    font-size: 10px;
  }
  .top-header .es-dash-timer .ms-3.evt-das-duration {
    margin-left: 8px !important;
  }
  .es-dashboard-widget .es-flex-between-start > div {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .es-card-section .es-card-header {
    padding: 15px 10px 0 9px !important;
  }
  .es-card-section .es-card-header .es-card-tabLinks {
    white-space: nowrap;
    overflow-x: auto;
  }
  .es-card-section .info-card.evt-client-sentiments-card .info-card-content table tbody tr {
    width: auto;
  }
  .es-card-section .es-summary-card > div {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .es-card-section .es-widget-wrap .crm-widget .evt-summary-total > div {
    width: 100%;
  }
  .es-card-section .es-widget-wrap .crm-widget .evt-summary-total > div.es-summary-quicklink ul {
    border-left: 0;
    border-top: 1px solid #DEE2E6;
    min-height: auto;
    padding: 10px 15px;
  }
  .es-card-section .es-widget-wrap .crm-widget .evt-summary-total > div a .py-4.px-3 {
    padding: 10px 15px !important;
  }
  .user-profile-head .es-user-left-section .es-company-avatar {
    margin: auto;
  }
  .user-profile-head .es-profile-info {
    padding: 0 !important;
  }
  .user-profile-head .es-profile-info .es-flex-between-center {
    justify-content: center;
    flex-direction: column;
  }
  .user-profile-head .es-profile-info .es-flex-between-center p.evt-content-copy {
    width: auto;
  }
  div#one-notify iframe#one-escalon-iframe-notify {
    width: 100% !important;
    left: 0;
    right: 0 !important;
    margin: auto;
    max-width: 93%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1299px) {
  .es-profile-card {
    padding: 0 10px !important;
  }
  .es-profile-card .user-profile-head {
    flex-wrap: wrap;
    justify-content: center;
  }
  .es-profile-card .user-profile-head .es-user-left-section {
    flex: 0 0 55px !important;
  }
  .es-profile-card .user-profile-head .es-user-left-section .es-company-avatar {
    height: 55px !important;
    max-width: 55px;
  }
  .es-profile-card .user-profile-head .es-profile-info .evt-content-copy .evt-user-info-email {
    max-width: 90% !important;
  }
  .es-profile-card .user-profile-head .es-profile-info .es-flex-between-center:nth-child(2) .evt-content-copy {
    width: 100% !important;
  }
}
@media only screen and (max-width: 1024px) {
  .search-result-content .search-result-box .search-cat div {
    font-size: 12px !important;
  }
  .search-result-content .search-result-box div a .search-list {
    font-size: 11px;
  }
  .search-results ul.nav.nav-tabs {
    display: none;
  }
  .search-results .search-result-content {
    border-left: 0 !important;
    padding: 0 !important;
    width: 100% !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .es-datatable .table-filters .dataTables_filter input {
    width: 160px;
  }
  .es-datatable .table-filters .es-datatable-filter .es-select .form-control {
    margin: 0 7px;
    width: 130px !important;
    margin-right: 0 !important;
    font-size: 12px;
    padding: 0 20px 0 6px;
  }
  .es-widget-wrap .es-col-form .section-title {
    flex: 0 0 100px !important;
    max-width: 100px !important;
  }
  .es-widget-wrap .es-col-form .es-row-wrap .form-group .user-email-view .email-ellipses {
    max-width: 150px !important;
    white-space: nowrap !important;
  }
  .user-profile-head .es-profile-info .evt-content-copy .evt-user-info-email {
    max-width: 125px !important;
  }
}
@media screen and (max-width: 480px) {
  .logo {
    left: 0;
  }
}
@media screen and (max-width: 576px) {
  footer > div {
    flex-wrap: wrap !important;
  }
  footer > div .footer-time-zone {
    order: 1;
    margin: 5px 0;
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
  }
  footer > div .es-version {
    order: 2;
  }
  footer > div .sidebar-footer {
    order: 3;
  }
  .es-card-section .es-card-body .es-widget-wrap .card-body .es-col-form {
    flex-wrap: wrap;
  }
  .es-card-section .es-card-body .es-widget-wrap .card-body .es-col-form .section-title {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 12px;
    margin-right: 0;
    border: none;
  }
  .es-card-section .es-card-body .es-widget-wrap .card-body .es-col-form .es-row-wrap .row .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .es-card-section .es-card-body .es-crm-right-icons {
    position: relative;
    right: 10px !important;
  }
  .logo {
    left: 0;
    transform: translateX(0);
  }
}
.client-contact-card table {
  width: 100%;
}

.es-popup-scroll {
  height: 434px !important;
  overflow-y: auto;
  overflow-x: hidden;
}

.es-card-collapse {
  text-align: center;
  cursor: pointer;
  font-size: 18px;
  border-radius: 5px;
  margin-top: 10px;
  height: 32px;
  width: 32px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-out;
}
.es-card-collapse i {
  transition: all 0.5s ease-out;
}

.es-dashboard-widget .crm-widget .crm-widget-wrap {
  justify-content: start;
}
.es-dashboard-widget .crm-widget .crm-widget-wrap > div {
  flex: 0 0 32%;
  max-width: 32%;
}
.es-dashboard-widget .crm-widget .card-body h5 a, .es-dashboard-widget .crm-widget .card-body .h5 a {
  color: #212529;
  font-weight: 500;
}
.es-dashboard-widget .crm-widget .card-body h5 a:hover, .es-dashboard-widget .crm-widget .card-body .h5 a:hover {
  color: #F7813D;
}

.opportunity-card-table tbody tr td {
  transition: all 0.5s ease-out;
}
.opportunity-card-table tbody tr td:first-child {
  min-width: 100px;
}

.opportunity-card-table:not(.show-opportunities) tbody tr:nth-child(n+5) td {
  opacity: 0;
  font-size: 0;
  padding: 0;
}

.show-opportunities + .es-card-collapse i {
  transform: rotate(180deg);
  line-height: normal;
}

.es-fly-head-ellipse {
  display: inline-block;
  padding-right: 12px;
  max-width: 99px;
  overflow: hidden;
  text-overflow: ellipsis;
}

td.dataTables_empty {
  box-shadow: none !important;
}

.es-tracker-list tbody tr:hover {
  cursor: pointer;
}

.es-task-type-field input {
  width: 335px;
}
.es-task-type-field i {
  font-size: 18px;
  margin-left: 10px;
  cursor: pointer;
  padding-top: 1px;
}

.es-assign-role-row {
  margin-top: 10px;
  align-items: center;
}
.es-assign-role-row .form-control {
  margin-top: 5px;
  width: 100% !important;
  margin-bottom: 20px;
}
.es-assign-role-row input {
  width: 213px;
}

i.ri-close-circle-fill:hover {
  color: #dc3545 !important;
}

.es-pencil-line-mypopup {
  padding: 0px;
  border: none !important;
  color: #868E96;
}

.es-add {
  border: 1px solid rgba(173, 181, 189, 0.68);
  width: 24px;
  height: 24px;
  display: inline-block;
  padding: 2px 0;
  line-height: 19px;
  text-align: center;
  border-radius: 1px;
  margin-bottom: 0px;
  z-index: 1;
}

.es-coordinator-template-head .es-add {
  line-height: 19px;
}

.es-apply-changes {
  margin: 0 0 !important;
}

form#add-tracker-task .es-task-row .form-group.form-check {
  padding-left: 0;
}
form#add-tracker-task .es-task-row .form-group.form-check > label {
  width: auto;
}

.es-task-dependency {
  padding: 0px 20px;
}

.es-type-list .es-input-check {
  cursor: pointer;
}

.es-useredit-switch input {
  margin-top: 0px !important;
  margin-left: 10px !important;
}

.es-header-card-sentiments {
  border-top: 0px solid #f7813d !important;
}

.es-coming-soon {
  margin-top: 69px;
  position: relative;
}
.es-coming-soon .es-coming-soon-icon {
  width: 374px;
}
.es-coming-soon h1, .es-coming-soon .h1 {
  font-size: 17px;
  color: #F7813D !important;
  font-weight: bold;
}
.es-coming-soon h2, .es-coming-soon .h2 {
  font-size: 14px;
}
.es-coming-soon .es-coming-soon-section {
  position: absolute;
  top: 56%;
  left: 38%;
}
.es-coming-soon .es-coming-soon-section h1, .es-coming-soon .es-coming-soon-section .h1 {
  font-size: 17px;
  color: #F7813D !important;
  font-weight: bold;
}
.es-coming-soon .es-coming-soon-section h2, .es-coming-soon .es-coming-soon-section .h2 {
  font-size: 14px;
  width: 286px;
}

.es-custom-select-add-content {
  padding: 12px 0 12px 0;
}

.es-task-type-list.table > :not(:first-child) {
  border-top: 0px solid transparent !important;
}

.es-task-type-list {
  margin-top: 15px;
  border-top: 1px dashed #eee;
}
.es-task-type-list thead tr {
  background-color: #eff2f7;
}

.es-img-wrapper img {
  width: 400px;
}

.es-img-coming-vector img {
  width: 342px;
  margin-right: -104px;
}

.es-text-coming-vector {
  margin-left: -88px;
}

ul.es-export-services {
  margin-top: 6px;
}
ul.es-export-services li {
  list-style: circle;
  padding-bottom: 10px;
}

table.domainDataList tbody tr td {
  cursor: pointer !important;
}
table.domainDataList tbody tr td .process-note-ellipsis {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 250px;
  display: inline-block;
  vertical-align: middle;
}

.es-widget-wrap .es-textarea {
  /* webkit browsers */
}
.es-widget-wrap .es-textarea .es-custom-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 440px;
  width: 100%;
  vertical-align: middle;
}
.es-widget-wrap .es-textarea textarea:-webkit-scrollbar {
  width: 11px;
}
.es-widget-wrap .es-textarea textarea:-webkit-scrollbar-track {
  background: #e9e9e9;
}
.es-widget-wrap .es-textarea textarea:-webkit-scrollbar-thumb {
  background-color: #aaa;
  border-radius: 6px;
  border: 3px solid transparent;
}
.es-widget-wrap .es-textarea textarea::-webkit-scrollbar,
.es-widget-wrap .es-textarea textarea::-webkit-scrollbar-thumb {
  height: 26px;
  border-radius: 13px;
  background-clip: padding-box;
  border: 10px solid transparent;
}
.es-widget-wrap .es-textarea textarea::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 0 10px;
}
.es-widget-wrap .es-textarea textarea {
  scrollbar-width: thin;
  scrollbar-color: #aaa #e9e9e9;
}

/* Scrollbar Styling */
.es-render-subsidiary {
  display: block !important;
  margin-top: 15px !important;
}

.es-add-box-custom-field {
  font-size: 20px;
}

.edit-detail-switch .form-switch {
  flex-wrap: wrap;
}
.edit-detail-switch .form-switch label.form-check-label {
  width: 100%;
}

td.es-sentimental-face:first-child {
  padding-right: 0px !important;
}

.es-sentimental-by-on:last-child {
  width: auto !important;
}
.es-sentimental-by-on .es-flex-start p span strong {
  color: #212529;
}

.evt-client-sentiments-content table tr td:first-child {
  padding-right: 0 !important;
  width: 38px;
}

@media only screen and (max-width: 767px) {
  .main header .es-add.cu-filter-block {
    margin-top: 0 !important;
  }
  .top-header .logo img {
    max-width: 70px;
  }
  .right-area .topbar-user {
    position: relative;
  }
  .right-area > div {
    margin-right: 5px !important;
  }
  .right-area > div:last-child {
    margin-right: 0 !important;
  }
  .right-area .app-search {
    width: 140px;
  }
  .right-area .es-datatable .table-filters {
    flex-wrap: wrap;
  }
  .right-area .es-datatable .table-filters .dataTables_filter {
    width: 100%;
  }
  .right-area .es-datatable .table-filters .dataTables_filter label input {
    width: 100%;
    background-size: 14px;
    background-position: 2%;
  }
  .right-area .es-datatable .table-filters .escalon-filter {
    margin-left: 0;
  }
  .right-area .es-datatable .table-filters .escalon-filter select.form-control {
    margin: 8px 0 0 !important;
  }
  .right-area .es-datatable .table-filters .es-reset {
    padding-left: 0 !important;
  }
}
.es-team-assign {
  margin-left: 0 !important;
  padding-top: 12px !important;
}
.es-team-assign li {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.06);
  background-color: #fff;
  border: 1px solid #f5f5f5;
  padding: 0 10px;
  position: relative;
  align-items: center;
  margin-right: 15px !important;
  width: 240px !important;
  border-radius: 6px;
}
.es-team-assign li .team-mem-profile {
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  display: flex;
  flex-shrink: 0;
}
.es-team-assign li .team-mem-profile img {
  border: 2px solid #dee2e7;
  border-radius: 50px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.es-team-assign li .team-assign-name {
  margin-left: 6px;
  text-align: left;
  padding-top: 11px;
  position: relative;
  z-index: 9;
}
.es-team-assign li .team-assign-name h2, .es-team-assign li .team-assign-name .h2 {
  font-size: 13px !important;
  margin-bottom: 0px;
}
.es-team-assign li .team-assign-name p {
  font-style: normal !important;
  margin-top: 3px !important;
  font-size: 12px;
}
.es-team-assign li .team-assign-name .text-truncate {
  max-width: 150px;
}
.es-team-assign li .es-sub-team {
  background-color: #F8F9FA;
  border: 1px solid #DEE2E6;
  border-radius: 2px;
  padding: 0;
  display: flex;
  height: 20px;
  width: 20px;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 6px;
  bottom: 6px;
}
.es-team-assign li .es-sub-team i {
  font-size: 12px;
}
.es-team-assign .es-team-box-ribbon {
  width: 150px;
  height: 150px;
  overflow: hidden;
  position: absolute;
}
.es-team-assign .es-team-box-ribbon::before, .es-team-assign .es-team-box-ribbon::after {
  position: absolute;
  z-index: -1;
  content: "";
  display: block;
  border: 5px solid #2980b9;
}
.es-team-assign .es-team-box-ribbon span {
  position: absolute;
  display: block;
  width: 158px;
  padding: 1px 0;
  background-color: #F7813D;
  color: #fff;
  font-size: 10px !important;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  text-align: center;
}

.es-team-hierarchy {
  position: relative;
  display: none;
  margin-top: 20px;
}
.es-team-hierarchy .close-hierarchy {
  background-color: transparent;
  border: none;
  font-size: 20px;
  position: absolute;
  right: 0;
  line-height: normal;
  top: 10px;
  cursor: pointer;
  z-index: 9;
}
.es-team-hierarchy > .es-team-assign {
  padding-top: 0 !important;
  padding-bottom: 0px;
  position: relative;
}
.es-team-hierarchy > .es-team-assign::before {
  content: "";
  height: 100%;
  width: 1px;
  background-color: #DEE2E6;
  position: absolute;
  left: 32px;
  top: 0;
}
.es-team-hierarchy > .es-team-assign:last-child::before {
  content: none;
}
.es-team-hierarchy > .es-team-assign:last-child li.associate-level-list ul.es-team-assign {
  border-bottom: 0 !important;
}
.es-team-hierarchy li.team-hierarchy-member > .team-assign-name .text-truncate {
  max-width: 170px;
}
.es-team-hierarchy li.associate-level-list {
  flex: 0 0 100% !important;
  max-width: 100%;
  box-shadow: none;
  border: none;
  padding-left: 50px;
  background-color: transparent;
  margin-bottom: 20px;
}
.es-team-hierarchy li.associate-level-list ul.es-team-assign {
  overflow-x: auto;
  padding-top: 0 !important;
  border-bottom: 0px solid #DEE2E6 !important;
}
.es-team-hierarchy li.associate-level-list ul.es-team-assign::-webkit-scrollbar-track {
  background: #F1F3F5;
  margin-left: 5px;
}
.es-team-hierarchy li.associate-level-list ul.es-team-assign::-webkit-scrollbar {
  height: 4px;
  margin-left: 5px;
}
.es-team-hierarchy li.associate-level-list ul.es-team-assign::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.125);
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
}
.es-team-hierarchy li.associate-level-list ul.es-team-assign::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.5);
}
.es-team-hierarchy li.associate-level-list ul.es-team-assign li .team-mem-profile {
  width: 36px;
  height: 36px;
  display: flex;
  flex-shrink: 0;
}
.es-team-hierarchy li.associate-level-list ul.es-team-assign li .team-assign-name p {
  margin-left: 0 !important;
}

/* top right*/
.es-ribbon-top-right {
  top: 0px;
  right: 0px;
}
.es-ribbon-top-right::before, .es-ribbon-top-right::after {
  border-top-color: transparent;
  border-right-color: transparent;
}
.es-ribbon-top-right::before {
  top: 0;
  left: 0;
}
.es-ribbon-top-right::after {
  bottom: 0;
  right: 0;
}
.es-ribbon-top-right span {
  left: 56px;
  top: 7px;
  transform: rotate(39deg);
}

.es-team-assigned-tabs {
  margin-left: 15px !important;
  margin-right: 15px !important;
}
.es-team-assigned-tabs .es-card-body {
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-bottom: 0 !important;
}
.es-team-assigned-tabs ul {
  border-bottom: 0px !important;
}
.es-team-assigned-tabs ul li.nav-item {
  margin-bottom: 5px !important;
}
.es-team-assigned-tabs ul li.nav-item button {
  background-color: #f2f2f2 !important;
  border-top-left-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
}
.es-team-assigned-tabs ul li.nav-item button.active {
  background-color: #f2f2f2 !important;
}
.es-team-assigned-tabs ul li.nav-item.es-billable-service button.nav-link {
  background-color: #DBEEF4 !important;
}

.es-team-members-internal-ul:after {
  content: "";
  height: 100%;
  width: 1px;
  background-color: #DEE2E6;
  position: absolute;
  left: 32px;
}

.es-summary-quicklink {
  padding: 12px 0;
}
.es-summary-quicklink ul {
  border-left: 1px solid #DEE2E6;
  list-style: none;
  margin-bottom: 0;
  min-height: 102px;
  padding: 10px 20px;
}
.es-summary-quicklink ul li {
  margin-bottom: 3px;
}
.es-summary-quicklink ul li a:hover i {
  opacity: 1;
  visibility: visible;
}
.es-summary-quicklink ul li a i {
  margin-left: 4px !important;
  font-size: 13px;
  font-weight: 500;
  color: #0a58ca;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-out;
}

.es-poc-order {
  order: -1;
}

.es-contact-type-select2 {
  height: auto;
}

.check-all {
  padding-bottom: 5px;
  border-bottom: 1px solid #DEE2E6;
}

.check-list-wrap .hidden {
  display: none;
}
.check-list-wrap ul {
  list-style: none;
}
.check-list-wrap ul label.form-check-label {
  margin-bottom: 0 !important;
  margin-left: 6px;
  line-height: normal;
}
.check-list-wrap ul li {
  padding: 6px 0;
}
.check-list-wrap ul li .check-list-arrow {
  border: none;
  background-color: transparent;
}
.check-list-wrap ul li .check-list-arrow.rotated {
  transform: rotate(90deg);
  margin-top: -4px;
}
.check-list-wrap ul li .form-check {
  margin-top: 0;
  margin-right: 0 !important;
}
.check-list-wrap ul li .form-check .check-list-arrow {
  padding-right: 0 !important;
}
.check-list-wrap ul li .form-check .disabled-error {
  color: #F03E3E;
  margin-left: 5px;
}
.check-list-wrap ul.stage-wrap-list {
  padding-left: 0;
}
.check-list-wrap ul.stage-wrap-list > li {
  border-bottom: 1px solid #DEE2E6;
}

.es-coordinator-template-head {
  position: relative;
}
.es-coordinator-template-head .es-btn-delete {
  border: 1px solid #ccc !important;
}
.es-coordinator-template-head .es-btn-delete i {
  color: #868E96;
}

.es-message-section {
  border-radius: 2px;
  background: linear-gradient(90deg, #FFF5F5 0%, rgba(255, 250, 250, 0.57) 100%);
  padding: 7px 335px 7px 7px;
  max-width: 1026px;
  margin-left: 0;
  position: absolute;
  top: -54px;
  right: -20px;
  z-index: 0;
}
.es-message-section .notify-cancel-img img {
  height: 65px;
}
.es-message-section .notify-cancelled-info {
  padding-left: 10px;
}
.es-message-section .notify-cancelled-info h3, .es-message-section .notify-cancelled-info .h3 {
  font-size: 12px;
  color: #495057;
}
.es-message-section .notify-cancelled-info h3 .cancel-error, .es-message-section .notify-cancelled-info .h3 .cancel-error {
  color: #F03E3E;
  font-size: 16px;
}
.es-message-section .notify-cancelled-info h3 a, .es-message-section .notify-cancelled-info .h3 a {
  color: #0A58CA;
}
.es-message-section .notify-cancelled-info h3 .on_ip, .es-message-section .notify-cancelled-info .h3 .on_ip {
  font-size: 12px;
  color: #868E96;
  position: relative;
}
.es-message-section .notify-cancelled-info h3 .on_ip::before, .es-message-section .notify-cancelled-info .h3 .on_ip::before {
  content: "";
  height: 4px;
  width: 4px;
  background-color: #868E96;
  display: inline-block;
  border-radius: 12px;
  vertical-align: middle;
  margin-right: 5px;
  margin-left: 3px;
}
.es-message-section .notify-cancelled-info p {
  margin-bottom: 0;
}
.es-message-section.es-notify-draft {
  background: linear-gradient(90deg, #F8F9FA 0%, rgba(255, 250, 250, 0.57) 100%);
}
.es-message-section.es-notify-draft .notify-cancelled-info h3 .cancel-error, .es-message-section.es-notify-draft .notify-cancelled-info .h3 .cancel-error {
  color: #F7813D;
}
.es-message-section.es-notify-draft .notify-cancelled-info .evt-action-message {
  display: flex;
  align-items: center;
}
.es-message-section.es-notify-hold {
  background: linear-gradient(90deg, #F8F9FA 0%, rgba(255, 250, 250, 0.57) 100%);
}
.es-message-section.es-notify-hold .notify-cancelled-info h3 .cancel-error, .es-message-section.es-notify-hold .notify-cancelled-info .h3 .cancel-error {
  color: #F7813D;
}

.es-lookup-wrap .es-select-scope {
  margin-top: 69px;
  position: relative;
}
.es-lookup-wrap .es-select-scope img {
  width: 374px;
}
.es-lookup-wrap .es-select-scope .es-select-scope-heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
}
.es-lookup-wrap.es-page-error {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.es-lookup-wrap .four-error-wrap {
  max-width: 500px;
  position: relative;
}
.es-lookup-wrap .four-error-wrap .four-error-info {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.es-lookup-wrap .four-error-wrap .four-error-info img {
  width: 42px;
  margin-bottom: 15px;
}
.es-lookup-wrap .four-error-wrap .four-error-info h2, .es-lookup-wrap .four-error-wrap .four-error-info .h2 {
  width: 100%;
  font-weight: 500;
}
.es-lookup-wrap .four-error-wrap .four-error-info p {
  max-width: 265px;
  margin: 5px auto 10px;
}
.es-lookup-wrap .four-error-wrap .four-error-info a {
  color: #F7813D;
}
.es-lookup-wrap .four-error-wrap .awkward-robot {
  width: 68px;
  position: absolute;
  bottom: 0;
  left: 47px;
}
.es-lookup-wrap button {
  border: none;
}
.es-lookup-wrap .es-lookup-setting.es-card-section {
  box-shadow: none;
}
.es-lookup-wrap .es-service-list {
  margin-top: 20px;
  padding-bottom: 0 !important;
}
.es-lookup-wrap .es-service-list h4, .es-lookup-wrap .es-service-list .h4 {
  font-size: 13px;
  margin-bottom: 2px;
}
.es-lookup-wrap .es-service-list p {
  font-size: 12px;
}
.es-lookup-wrap .es-service-list ul.drag-services-list {
  list-style: none;
  margin-bottom: 0;
  padding: 0;
}
.es-lookup-wrap .es-service-list ul.drag-services-list li {
  border-bottom: 1px solid #E9ECEF;
  padding: 8px 0;
  display: flex;
  align-items: center;
  cursor: grab;
}
.es-lookup-wrap .es-service-list ul.drag-services-list li:hover i.ri-pencil-line {
  opacity: 1;
  visibility: visible;
}
.es-lookup-wrap .es-service-list ul.drag-services-list li span .btn {
  outline: none !important;
  padding: 0;
  border: none;
}
.es-lookup-wrap .es-service-list ul.drag-services-list li span .btn i {
  margin-left: 5px;
  opacity: 0;
  visibility: hidden;
}
.es-lookup-wrap .es-service-list ul.drag-services-list li i.ri-draggable {
  margin-left: auto;
}
.es-lookup-wrap .es-service-list ul.drag-services-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.es-lookup-wrap .es-addnew-type .form-group.es-input-text {
  margin-bottom: 0;
}
.es-lookup-wrap .es-addnew-type .add-new-type {
  margin-top: 8px;
}
.es-lookup-wrap .es-addnew-type .delete-type {
  padding: 0;
}
.es-lookup-wrap .es-addnew-type .add-new-type .btn {
  color: #F7813D;
  font-size: 13px;
  padding: 0;
  border: none;
}

.flipped {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

.timeline_area {
  position: relative;
  z-index: 1;
}

.single-timeline-area {
  position: relative;
  z-index: 1;
  padding-left: 0px;
}
.single-timeline-area .timeline-date {
  position: absolute;
  width: 321px;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-right: 114px;
}
.single-timeline-area .timeline-date::after {
  position: absolute;
  width: 3px;
  height: 100%;
  content: "";
  background-color: #ebebeb;
  top: 0;
  left: 4px;
  z-index: 1;
}
.single-timeline-area .timeline-date::before {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: orange;
  content: "";
  top: 14px;
  left: 0;
  z-index: 5;
  margin-top: -5.5px;
}
.single-timeline-area .timeline-date .add-new-sheet {
  border: 1px solid #ccc;
  width: 30px;
  height: 28px;
  display: inline-block;
  padding: 3px 0;
  line-height: 19px;
  text-align: center;
  border-radius: 2px;
  margin-bottom: 0px;
  background-color: #fff;
  max-width: 30px;
  border-radius: 50%;
  margin-right: 15px;
}
.single-timeline-area .timeline-date .add-new-sheet i {
  color: #ffffff;
  line-height: 30px;
}
.single-timeline-area .timeline-date .es-timeline-mrgn-top {
  padding-top: 25px;
}
.single-timeline-area .single-timeline-content {
  position: relative;
  z-index: 1;
  padding: 0px 1px 7px;
  border-radius: 6px;
  margin-bottom: 0px;
  margin-top: 5px;
}
.single-timeline-area .single-timeline-content .timeline-icon {
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  width: 30px;
  height: 30px;
  background-color: #fd7e14;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30px;
  flex: 0 0 30px;
  text-align: center;
  max-width: 30px;
  border-radius: 50%;
  margin-right: 15px;
}
.single-timeline-area .single-timeline-content .timeline-icon i {
  color: #ffffff;
  line-height: 30px;
}
.single-timeline-area .single-timeline-content .es-timeline-mrgn-top {
  padding-top: 25px;
}
.single-timeline-area .single-timeline-content .timeline-text ul {
  column-count: 2;
  column-gap: 170px;
  white-space: nowrap;
  width: 550px;
}
.single-timeline-area .single-timeline-content .timeline-text ul li {
  cursor: pointer;
  margin-bottom: 7px;
}
.single-timeline-area .single-timeline-content .timeline-text ul li a,
.single-timeline-area .single-timeline-content .timeline-text ul li .client-management-report-export,
.single-timeline-area .single-timeline-content .timeline-text ul li .client-cem-details-export {
  color: #343A40 !important;
}
.single-timeline-area .single-timeline-content .timeline-text ul li a:hover,
.single-timeline-area .single-timeline-content .timeline-text ul li .client-management-report-export:hover,
.single-timeline-area .single-timeline-content .timeline-text ul li .client-cem-details-export:hover {
  color: #F7813D !important;
}
.single-timeline-area .single-timeline-content .timeline-text h6, .single-timeline-area .single-timeline-content .timeline-text .h6 {
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
}
.single-timeline-area .single-timeline-content .timeline-text p {
  font-size: 13px;
  margin-bottom: 0;
}

.es-tracker-template-activity-popup {
  width: 923px;
}

.es-pipeline-activity-popup {
  width: 923px;
}

.es-custom-popup .hide {
  visibility: hidden;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%) scale(0.8) !important;
  -moz-transform: translateX(-50%) translateY(-50%) scale(0.8) !important;
  -o-transform: translateX(-50%) translateY(-50%) scale(0.8) !important;
  -webkit-transform: translateX(-50%) translateY(-50%) scale(0.8) !important;
}
.es-custom-popup .close {
  position: absolute;
  right: 0;
  top: 0;
  width: 51px;
  height: 51px;
  font-size: 0;
  cursor: pointer;
}
.es-custom-popup .close::before {
  content: "";
  position: absolute;
  background: #767676;
  -moz-border-radius: 1px;
  -webkit-border-radius: 1px;
  -o-border-radius: 1px;
  border-radius: 1px;
  left: 14px;
  right: 14px;
  top: 30px;
  height: 3px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 100ms ease-in;
  -moz-transition: all 100ms ease-in;
  -webkit-transition: all 100ms ease-in;
  -o-transition: all 100ms ease-in;
}
.es-custom-popup .close:after {
  content: "";
  position: absolute;
  background: #767676;
  -moz-border-radius: 1px;
  -webkit-border-radius: 1px;
  -o-border-radius: 1px;
  border-radius: 1px;
  left: 14px;
  right: 14px;
  top: 30px;
  height: 3px;
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 100ms ease-in;
  -moz-transition: all 100ms ease-in;
  -webkit-transition: all 100ms ease-in;
  -o-transition: all 100ms ease-in;
}

.es-hosizontal-tabs {
  margin: 20px 0;
}
.es-hosizontal-tabs .es-tab-section-left .nav-tabs {
  margin-bottom: 15px;
  padding-right: 0;
  flex-wrap: wrap;
}
.es-hosizontal-tabs .es-tab-section-left .nav-tabs li {
  width: 100%;
  border-right: 0;
}
.es-hosizontal-tabs .es-tab-section-left .nav-tabs li button {
  text-align: left;
  border-right: 0;
  border-bottom: 2px solid #e9ecef !important;
  width: auto;
  margin-bottom: 0;
  text-align: left;
  border-right: 0;
  width: auto;
  margin-bottom: 0;
  background-color: transparent;
  padding-top: 0px;
  padding-bottom: 4px;
}
.es-hosizontal-tabs .es-tab-section-left .nav-tabs li button.active {
  border-color: #fc8e25 !important;
}

.es-report-heading {
  list-style: none;
  font-weight: 501;
  margin-left: -11px;
  padding-left: 0px;
}

/******************Holistic view css*********************/
@-moz-document url-prefix() {
  .es-holistic-view {
    scrollbar-color: #b6b4b4 #cfd1d2;
    scrollbar-width: thin;
  }
}
.es-holistic-view {
  overflow-x: auto;
  overflow-y: hidden;
}
.es-holistic-view .task-disabled {
  opacity: 20%;
}
.es-holistic-view::-webkit-scrollbar-track {
  background: #F1F3F5;
}
.es-holistic-view::-webkit-scrollbar {
  height: 4px;
}
.es-holistic-view::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.125);
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
}
.es-holistic-view::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.5);
}
.es-holistic-view table.es-holistic-main-table {
  border-bottom: 1px solid #DEE2E6;
}
.es-holistic-view table.es-holistic-main-table > thead > tr > th.es-outer-th {
  white-space: nowrap;
}
.es-holistic-view table.es-holistic-main-table > tbody > tr > td {
  border-bottom: 1px solid #DEE2E6;
}
.es-holistic-view table.es-holistic-main-table th {
  font-weight: 500;
  color: #495057;
}
.es-holistic-view table.es-holistic-main-table td {
  padding: 0;
}
.es-holistic-view table.es-holistic-main-table td.es-outer-gap {
  vertical-align: baseline;
  border-bottom: none;
}
.es-holistic-view table.es-holistic-main-table td.es-outer-gap table td {
  border-bottom: 1px solid #DEE2E6;
}
.es-holistic-view table.es-holistic-main-table .es-outer-gap {
  width: 30px;
}
.es-holistic-view table.es-holistic-main-table > thead tr th {
  background-color: #F8F9FA;
  padding: 10px 20px;
}
.es-holistic-view table.es-holistic-main-table > thead tr th.es-outer-th {
  background-color: #F1F3F5;
  text-align: center;
}
.es-holistic-view table.es-holistic-main-table tbody tr td.outer-group-td table th {
  border-bottom: 1px solid #DEE2E6;
  padding: 6px 0;
}
.es-holistic-view table.es-holistic-main-table tbody tr td.outer-group-td table .group-task-td {
  min-width: 100px;
  background-color: rgb(248, 249, 250);
}
.es-holistic-view table.es-holistic-main-table tbody tr td.outer-group-td table .group-task-td .outer-group-table tr td {
  width: 20px;
  min-width: 20px;
  max-width: 20px;
  text-align: center;
  padding: 10px 0px;
  border-right: 1px solid #DEE2E6;
  border-left: 1px solid #DEE2E6;
  line-height: normal;
  position: relative;
}
.es-holistic-view table.es-holistic-main-table tbody tr td.outer-group-td table .group-task-td .outer-group-table tr td img.table-list-delayed {
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  margin: auto;
}
.es-holistic-view table.es-holistic-main-table tbody tr td.outer-group-td table td.inner-table-space {
  background-color: rgb(248, 249, 250);
  vertical-align: middle;
  padding: 0;
  margin: 0;
}
.es-holistic-view table.es-holistic-main-table .inner-table-space {
  width: 20px;
  min-width: 20px;
}
.es-holistic-view table.es-holistic-main-table tbody tr.es-holistic-client-row td.es-holistic-client {
  vertical-align: middle;
}
.es-holistic-view table.es-holistic-main-table tbody tr.es-holistic-client-row table.outer-group-table td {
  padding: 22px 0 !important;
}
.es-holistic-view table.es-holistic-main-table > tbody > tr.es-holistic-client-row:last-child td.outer-group-td td {
  border-bottom: 0 !important;
}
.es-holistic-view span.holistic-task-name {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotateZ(180deg);
  height: 80px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.es-holistic-view .task-status {
  display: inline-block;
  height: 16px;
  width: 16px;
  border-radius: 50px;
  cursor: pointer;
  vertical-align: middle;
}
.es-holistic-view .task-green {
  background-color: #38D9A9;
}
.es-holistic-view .task-red {
  background-color: #FF8787;
}
.es-holistic-view .task-yellow {
  background-color: #FCC419;
}
.es-holistic-view .task-gray {
  background-color: #CED4DA;
}
.es-holistic-view td.es-holistic-client {
  vertical-align: baseline;
  background-color: #fff;
  z-index: 1;
}
.es-holistic-view td.es-holistic-client table tr td {
  height: 32px;
  border-bottom: 1px solid #DEE2E6;
}
.es-holistic-view .es-holistic-client {
  width: 250px;
  min-width: 250px;
  position: sticky;
  left: 0;
}
.es-holistic-view .es-holistic-client table {
  width: 100%;
}
.es-holistic-view .es-holistic-client .progress {
  width: 35px;
  height: 4px;
  margin-right: 5px;
}
.es-holistic-view .es-holistic-client .holi-client-info {
  color: #868E96;
  padding: 12px 15px;
}
.es-holistic-view .es-holistic-client .holi-client-info span {
  font-size: 12px;
}
.es-holistic-view .es-holistic-client .holi-client-info h4, .es-holistic-view .es-holistic-client .holi-client-info .h4 {
  margin-bottom: 5px;
  font-size: 13px;
}

.es-tab-section-left .nav-tabs {
  list-style-type: none;
  padding: 0 15px 0 0;
  text-align: center;
  border: none;
}
.es-tab-section-left .nav-tabs li.hover {
  color: #fc8e25;
}
.es-tab-section-left .nav-tabs li button {
  color: #666;
  font-weight: 600;
  text-align: left;
  font-size: 13px;
  position: relative;
  width: 100%;
  padding: 10px 0;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  border-right: 3px solid transparent;
  border-radius: 0;
}

.es-report-heading {
  list-style: none;
  font-weight: 501;
  margin-left: 21px;
  padding-left: 0px;
  font-size: 13px !important;
}

.es-custom-popup .popup {
  position: absolute;
  top: 40%;
  left: -42%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background: #fff;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  width: 300px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
  -moz-transition: all 120ms;
  -webkit-transition: all 120ms;
  -o-transition: all 120ms;
  transition: all 120ms;
  z-index: 99;
  padding: 12px;
  color: #5E5E5E;
}
@media screen and (max-width: 1000px) {
  .es-custom-popup .popup .popup {
    width: 80%;
  }
}
.es-custom-popup .popup .popup-header {
  background-color: #eeeeee;
  margin: -12px -12px 4px -12px;
  padding: 11px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom: 1px solid #DEE2E6;
}
.es-custom-popup .popup .popup-header h5, .es-custom-popup .popup .popup-header .h5 {
  margin-bottom: 0px !important;
}
.es-custom-popup .popup .popup-header .btn-close {
  cursor: pointer;
}
.es-custom-popup .popup .popup-header .btn-close:hover {
  opacity: 1;
  background: url(/img/side-modal-orange-close.svg) center/1em !important;
  background-repeat: no-repeat !important;
}
.es-custom-popup.es-field-rule .popup-body .es-custom-select-add-content {
  padding-bottom: 0;
  border: none;
}
.es-custom-popup.es-field-rule .popup-body .es-custom-select-add-content .form-group.es-select:last-child {
  margin-bottom: 0;
}
.es-custom-popup.es-field-rule .modal-footer {
  border: none;
}

.es-multi-select {
  position: relative;
  z-index: 9;
}
.es-multi-select span.select2.select2-container--open {
  box-shadow: none !important;
}
.es-multi-select .select2-dropdown .select2-results ul.select2-results__options li.select2-results__option {
  position: relative;
}
.es-multi-select .select2-dropdown .select2-results ul.select2-results__options li.select2-results__option.select2-results__option--selected::before {
  background-color: #757575;
  border-color: transparent;
}
.es-multi-select .select2-dropdown .select2-results ul.select2-results__options li.select2-results__option.select2-results__option--selected::after {
  opacity: 1;
}
.es-multi-select .select2-dropdown .select2-results ul.select2-results__options li.select2-results__option::before {
  content: "";
  color: #DEE2E6;
  vertical-align: text-bottom;
  display: inline-block;
  margin-right: 10px;
  margin-left: 5px;
  width: 16px;
  height: 16px;
  line-height: normal;
  border: 1px solid #DEE2E6;
  border-radius: 2px;
}
.es-multi-select .select2-dropdown .select2-results ul.select2-results__options li.select2-results__option::after {
  content: "\eb7b";
  position: absolute;
  color: #fff;
  left: 13px;
  font-family: "remixicon";
  top: 5px;
  opacity: 0;
}
.es-multi-select .select2-container {
  width: 100% !important;
}
.es-multi-select .select2-container .select2-selection {
  border-color: #ced4da;
  border-radius: 2px !important;
  height: auto;
  min-height: 30px;
  padding-left: 4px;
  line-height: 18px;
  display: flex;
  align-items: center;
  background-image: url(/img/arrow-down-s-line.png) !important;
  background-repeat: no-repeat;
  background-position: 98% 8px;
  background-size: 13px;
  padding-right: 25px;
}
.es-multi-select .select2-container .select2-selection .select2-selection__rendered {
  max-width: 268px;
  margin-bottom: 0;
}
.es-multi-select .select2-container .select2-selection .select2-selection__rendered:empty {
  display: none;
}

.notify-cancelled-info {
  padding-left: 15px;
}
.notify-cancelled-info h3, .notify-cancelled-info .h3 {
  font-size: 13px;
  color: #495057;
}
.notify-cancelled-info h3 .cancel-error, .notify-cancelled-info .h3 .cancel-error {
  color: #F03E3E;
  font-size: 20px;
}
.notify-cancelled-info .es-fiscal-year {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .notify-cancelled-info .es-fiscal-year {
    white-space: nowrap;
  }
}
.notify-cancelled-info .es-fiscal-year label.form-label:empty {
  display: none;
}
.notify-cancelled-info .es-fiscal-year .form-group.es-select {
  top: 0 !important;
}
.notify-cancelled-info .es-fiscal-year .fiscal-to {
  font-size: 12px;
  line-height: 20px;
  margin: 0 12px;
}
@media only screen and (max-width: 767px) {
  .notify-cancelled-info .es-fiscal-year .fiscal-to {
    font-size: 10px;
  }
}
.notify-cancelled-info .es-fiscal-year .fiscal-to.es-edit-fiscal {
  line-height: 30px;
}
.notify-cancelled-info .es-fiscal-year .fiscal-to a {
  color: #0A58CA;
}
.notify-cancelled-info .es-fiscal-year .fiscal-to .on_ip {
  font-size: 12px;
  color: #868E96;
  position: relative;
}
.notify-cancelled-info .es-fiscal-year .fiscal-to .on_ip::before {
  content: "";
  height: 4px;
  width: 4px;
  background-color: #868E96;
  display: inline-block;
  border-radius: 12px;
  vertical-align: middle;
  margin-right: 5px;
  margin-left: 3px;
}
.notify-cancelled-info .es-fiscal-year p {
  margin-bottom: 0;
}

.es-unsaved-changes {
  background-color: #FFF9DB;
  color: #E67700 !important;
  padding: 0 8px 0 0;
  font-size: 12px;
  position: absolute;
  top: 136px;
  right: 20px;
  font-weight: 400;
}
.es-unsaved-changes.es-run-pipeline-msg {
  top: 115px;
  right: 0;
  padding: 0 8px 0 0;
}
.es-unsaved-changes.es-run-pipeline-msg i.ri-information-line {
  line-height: normal;
  font-size: 13px;
  height: auto;
  padding: 0 0 0 5px;
}
.es-unsaved-changes i.ri-information-line {
  line-height: 26px;
  color: #FAB005;
  font-size: 14px;
  height: 24px;
  display: inline-block;
  padding: 0 5px;
}

.evt-head-task-desc a {
  color: #0a58ca !important;
}

.es-address-head {
  border-top: 1px dashed #ccc;
}
.es-address-head h4, .es-address-head .h4 {
  margin-top: 10px;
  font-weight: 600;
  padding-bottom: 2px;
}

.es-team-head-action {
  font-size: 14px;
}

.es-orange i {
  color: #F7813D !important;
}

.btn.evt-export-user-listing {
  margin-right: 10px;
  background: #F7813D;
  border: 1px solid #F7813D;
  height: 26px !important;
  font-size: 13px !important;
  line-height: normal;
  border-radius: 2px;
  padding: 3px 6px !important;
  display: flex;
}

.es-security-icon {
  margin-left: 10px;
  font-size: 14px;
}

.es-message-load {
  display: inline;
  margin-left: 5px;
  color: #212529;
}

.es-payrollinfo {
  margin-right: 98px !important;
  padding-top: 9px;
}

.es-head-info .es-select {
  margin-right: 10px;
}

.es-payDate {
  min-width: 163px !important;
}

.no-notes-available {
  text-align: center;
  position: relative;
  margin: 100px 0;
}
.no-notes-available p {
  position: absolute;
  font-size: 13px;
  font-weight: 500;
  color: #343A40;
  top: 44%;
  left: 0;
  right: 0;
  margin: auto;
}
.no-notes-available p span {
  display: block;
  color: #F7813D;
}

.es-vertical-lookup {
  width: 123px !important;
  display: inline-block;
  font-size: 13px;
  align-items: center;
  flex-wrap: wrap;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
}

.evt-one-activity li {
  position: relative;
}

.es-stage-divider {
  border-right: 1px solid #DEE2E6;
}

@media only screen and (max-width: 767px) {
  footer .es-version span {
    font-size: 10px !important;
  }
  .es-dash-timer {
    margin-left: 0;
    margin-bottom: 4px;
    width: 100%;
  }
  .es-dash-timer .title {
    font-size: 12px;
    line-height: normal;
  }
  .es-dash-timer .subtitle {
    line-height: normal;
    margin-top: 5px;
    margin-bottom: 3px;
  }
  .es-dash-timer .subtitle a {
    font-size: 11px;
    line-height: normal;
  }
  .es-dash-timer .duration {
    font-size: 10px;
  }
  .es-dash-timer .duration i {
    font-size: 13px;
    margin-right: 2px;
    height: 12px;
    line-height: normal;
    position: relative;
    top: 0px;
    margin-left: -2px;
  }
  .es-dash-timer .running-clock-top {
    width: 12px;
    height: 12px;
  }
  .es-dash-timer .play-btn {
    width: 44px;
  }
  .es-dash-timer .stop-btn {
    width: 44px;
  }
  header.top-header {
    flex-direction: column;
    height: auto;
  }
  .top-header {
    padding: 10px 15px;
  }
  .top-header .logo {
    position: static;
    transform: translate(0);
    left: 65px;
    margin-right: auto;
    margin-bottom: 8px;
    margin-top: 4px;
  }
  .top-header .logo img {
    max-width: 80px;
  }
  .top-header .right-area {
    width: 100%;
    margin-top: 5px;
  }
  .top-header .right-area .app-search {
    flex: 1;
  }
  .top-header .right-area .es-notification-panel {
    margin-right: 8px;
  }
  .es-app-menu.navbar-menu nav.navbar .collapse {
    box-shadow: none;
  }
  .es-profile-card .user-profile-head .es-user-left-section .es-company-avatar {
    margin: auto;
  }
  .es-profile-card .user-profile-head .es-profile-info {
    padding: 0 !important;
  }
  .es-profile-card .user-profile-head .es-profile-info .es-flex-between-center {
    justify-content: center;
    flex-direction: column;
  }
  .es-profile-card .user-profile-head .es-profile-info .es-flex-between-center p.evt-content-copy {
    width: auto;
  }
  .es-datatable .table-filters .dataTables_filter label input {
    width: 85%;
    background-position: 6px;
    margin: auto;
    margin-right: auto;
  }
  .offcanvas .offcanvas-header {
    padding: 10px 15px;
  }
  .offcanvas .es-tracker-template-activity-popup nav {
    padding: 10px !important;
  }
}
@media only screen and (max-width: 599px) {
  .left-area {
    justify-content: space-between !important;
    flex-direction: column;
    width: 100%;
  }
  .es-popout-show img {
    display: none;
  }
  img.es-client-pop {
    display: none;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .left-area {
    justify-content: space-between;
    width: 100%;
  }
  .left-area .es-dash-timer {
    justify-content: end;
  }
}
@media only screen and (max-width: 1170px) {
  .es-company-avatar {
    max-height: 55px !important;
    max-width: 55px !important;
  }
  .es-profile-info {
    padding-left: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .es-dash-timer .es-tracker-description {
    padding-left: 12px;
  }
  .es-dash-timer .duration {
    font-size: 11px;
  }
  .es-dash-timer .subtitle {
    font-size: 11px;
  }
  .es-dash-timer .title {
    font-size: 12px;
  }
  header .es-dash-timer {
    margin-left: 10px;
  }
  header .es-dash-timer .ms-3.evt-das-duration {
    margin-left: 10px;
  }
  .app-search.es-search-opened {
    width: 168px !important;
  }
  .page header.top-header {
    padding: 10px 15px !important;
  }
  .page header.top-header .logo {
    position: static;
    transform: translate(0);
  }
  .page header.top-header .logo a img {
    max-width: 80px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1299px) {
  .es-widget-wrap .card-body .es-action-cards .action-card-holder.col-lg-5 {
    width: 49%;
  }
  .es-widget-wrap .card-body .es-action-cards .action-card-holder.col-lg-5 .action-card {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .es-widget-wrap .card-body .es-action-cards .action-card-holder.col-lg-5 .action-card .action-card-content table {
    display: block;
  }
  .es-widget-wrap .card-body .es-action-cards .action-card-holder.col-lg-5 .action-card .action-card-content table tbody {
    display: block;
  }
  .es-widget-wrap .card-body .es-action-cards .action-card-holder.col-lg-5 .action-card .action-card-content table tbody tr {
    display: block;
  }
  .es-widget-wrap .card-body .es-action-cards .action-card-holder.col-lg-5 .action-card .action-card-content table tbody tr td {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .es-profile-info .es-flex-between-center p {
    margin-left: -11px;
    margin-top: 5px;
  }
}
@media only screen and (max-width: 1303px) {
  .es-widget-card-coordinator {
    position: relative;
    overflow-x: auto;
    white-space: nowrap;
  }
  .coordinator-table {
    overflow-x: auto;
    white-space: nowrap;
  }
}
@media only screen and (max-width: 1199px) {
  .es-message-section {
    position: relative;
    top: 0;
    padding: 10px 5px;
    right: auto;
  }
  .es-coordinator-template-head {
    margin-bottom: 10px;
  }
  .es-coordinator-template-head .btn.es-btn-primary {
    font-size: 11px !important;
    padding: 1px 4px !important;
  }
  .es-coordinator-template-head .es-flex-start:nth-child(1) {
    display: none !important;
  }
}
@media only screen and (min-width: 993px) and (max-width: 1199px) {
  .top-header .es-dash-timer {
    margin-right: 5px;
  }
  .top-header .es-dash-timer .es-tracker-description {
    white-space: normal;
    word-break: break-all;
    font-size: 12px;
    max-width: 200px;
  }
}
@media only screen and (max-width: 992px) {
  .tooltip,
  .tooltip.show {
    display: none !important;
  }
  header .ms-2.evt-collapsing-area,
  header .es-tracker-description {
    display: none !important;
  }
  .wrapper .top-header,
  .wrapper .es-app-menu,
  .wrapper footer,
  .wrapper .es-h2-header {
    position: relative;
    top: 0;
  }
  .es-app-menu nav.navbar {
    padding-top: 7px;
    display: flex !important;
    justify-content: space-between;
    min-height: auto !important;
    padding-left: 15px;
  }
  .es-app-menu nav.navbar .es-mega-menu {
    z-index: 99;
  }
  .es-app-menu nav.navbar .es-mega-menu .mega-menu-wrap ul.mega-menu-row {
    flex-wrap: wrap;
  }
  .es-app-menu nav.navbar .es-mega-menu .mega-menu-wrap ul.mega-menu-row li {
    padding: 10px 15px 10px 17px;
    width: 100% !important;
    max-width: unset !important;
    min-width: auto !important;
    margin-right: 0 !important;
  }
  .es-app-menu nav.navbar .es-mega-menu > .row > div {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding-right: 15px !important;
  }
  .es-app-menu nav.navbar .es-mega-menu > .row > div:last-child {
    padding-bottom: 15px;
  }
  .es-app-menu nav.navbar > .collapse {
    display: flex !important;
    flex: 1;
    justify-content: end;
    height: auto !important;
    padding: 0;
  }
  .es-app-menu nav.navbar > .collapse ul.navbar-nav {
    display: none;
    padding: 10px 0;
  }
  .es-app-menu nav.navbar .nav-item {
    position: relative;
    margin-right: 0;
    padding: 10px 15px;
  }
  .es-app-menu .mobile-toggle-menu {
    padding: 0;
    font-size: 20px !important;
    border: none;
    display: block !important;
    height: auto !important;
  }
  .es-app-menu .mobile-toggle-menu i {
    color: #fff;
  }
  .es-app-menu.open-mobile-menu .collapse .navbar-nav {
    display: block !important;
    position: absolute;
    top: 40px;
    width: 100%;
    background-color: #454545;
    border-top: 1px solid #6f6f6f;
    left: 0;
    margin: 0;
  }
  .es-app-menu.open-mobile-menu .mobile-toggle-menu i::before {
    content: "\eb99";
  }
  .es-app-menu .es-meet-wiki {
    padding: 10px !important;
  }
  header.top-header .app-search.es-search-opened {
    width: 300px;
  }
  .es-mega-submenu.es-mega-submenu-level-second, .es-mega-submenu.mega-submenu-settings-level-second {
    display: none;
  }
  .mega-menu-row.es-mega-submenu-level-first li.es-click-menu, .mega-menu-row.mega-submenu-settings-level-first li.es-click-menu {
    position: relative;
  }
  .mega-menu-row.es-mega-submenu-level-first li.es-click-menu > a::after, .mega-menu-row.mega-submenu-settings-level-first li.es-click-menu > a::after {
    display: inline-block;
    line-height: 12px !important;
    content: "\ea4f";
    font-family: remixicon !important;
    font-size: 20px;
    position: relative;
    width: 17px;
    top: 0;
    margin-left: -3px;
    vertical-align: middle;
  }
  .mega-menu-row.es-mega-submenu-level-first li.es-click-menu.active-link > a::after, .mega-menu-row.mega-submenu-settings-level-first li.es-click-menu.active-link > a::after {
    transform: rotate(180deg);
    line-height: 12px !important;
    margin-left: 0;
    top: -1px;
    width: 14px;
    right: -3px;
  }
}
@media only screen and (max-width: 599px) {
  .es-popout {
    display: none !important;
  }
  .es-version span {
    font-size: 11px;
  }
  footer .es-version {
    order: 2;
  }
  footer .footer-time-zone {
    order: 1;
    flex: 0 0 100%;
    margin-top: 5px;
    margin-bottom: 2px;
  }
  footer .sidebar-footer {
    order: 3;
  }
  footer > div {
    flex-wrap: wrap;
  }
  footer {
    height: auto;
    font-size: 12px;
    padding: 0 15px 8px;
    min-height: auto;
  }
  footer .footer-time-zone .es-time-zone {
    padding: 0 !important;
  }
  footer .footer-time-zone .es-time-zone ul {
    margin: 0;
    width: 100%;
    justify-content: space-evenly;
  }
  footer .footer-time-zone .es-time-zone ul li {
    margin: 0 4px;
  }
  footer .footer-time-zone .es-time-zone ul li span {
    font-size: 8px;
    margin-right: 0px;
  }
  footer .sidebar-footer i {
    height: 13px;
    display: inline-block;
    font-size: 11px !important;
    margin-top: 0;
  }
  footer .es-version span {
    font-size: 9px;
  }
  .es-action-cards .action-card-content table tbody td {
    display: block;
  }
  .es-action-cards .action-card-content table tbody td * {
    display: inline-block;
    width: auto;
  }
}
@media only screen and (min-width: 600px) and (max-width: 992px) {
  footer {
    height: auto;
    font-size: 12px;
    white-space: nowrap;
    padding: 3px 15px;
  }
  .es-version span {
    font-size: 11px;
  }
  footer .sidebar-footer button i,
  footer .sidebar-footer a.es-title-wiki i {
    font-size: 13px;
  }
  footer .es-time-zone ul li {
    margin: 1px 8px;
    font-size: 11px;
  }
  footer .es-time-zone ul li span {
    margin-right: 2px;
  }
  footer .es-time-zone ul {
    margin: 0;
  }
}
@media only screen and (max-width: 550px) {
  .evt-card .card-body .col-11 {
    width: 100%;
  }
  .evt-card .card-body .es-action-cards .col-4 {
    width: 100% !important;
    margin-left: 0px !important;
    padding-left: 0px !important;
  }
  .evt-activity-list-data {
    overflow-x: auto;
  }
  .es-datatable .row:last-child .dataTables_paginate .pagination li a {
    padding: 3px 5px !important;
  }
  .es-crm-right-icons a {
    width: 24px !important;
    padding: 0px !important;
    align-items: center;
    display: flex;
    justify-content: center;
    height: 24px;
  }
}
@media only screen and (max-width: 400px) {
  .es-crm-right-icons a {
    margin-left: 17px;
  }
  .es-message-section .notify-cancelled-info h3, .es-message-section .notify-cancelled-info .h3 {
    font-size: 10px;
  }
  .es-message-section .notify-cancelled-info h3 .cancel-error, .es-message-section .notify-cancelled-info .h3 .cancel-error {
    font-size: 13px;
  }
  .es-message-section .notify-cancelled-info p {
    font-size: 10px;
  }
  .es-timeline-note-action .btns-block button {
    margin-bottom: 5px;
    font-size: 11px !important;
  }
}
@media only screen and (max-width: 1080px) {
  .evt-activity-list-data {
    overflow-x: auto;
  }
}
.es-menu-list.active {
  display: block !important;
  margin-bottom: 0px !important;
}

.es-dependent-task .es-select-task .add-new-sheet {
  border: 1px solid #ced4da;
  background-color: transparent;
  height: 30px;
  width: 30px;
  margin-top: 22px;
  border-radius: 2px;
}
.es-dependent-task .es-select-task .es-custom-popup-field-list {
  border-top: 1px dashed #DEE2E6;
  width: calc(100% - 15px);
  margin-left: 13px;
  margin-top: 0 !important;
  padding-top: 6px !important;
  padding-left: 0;
  padding-right: 0;
}

.es-tracker-template-activity-popup .activity-dropdown-filter {
  display: flex;
  margin-bottom: 15px;
}
.es-tracker-template-activity-popup .activity-dropdown-filter select {
  margin-right: 15px;
}

.es-red-alert {
  color: #F03E3E;
}

.es-green-alert {
  color: #0CA678;
}

.counter-value {
  font-size: 12px !important;
}

.es-holistic-view .col-sm-12.col-md-5 {
  display: none;
}
.es-holistic-view .col-sm-12.col-md-7 {
  flex: 0 0 100%;
  max-width: 100%;
}
.es-holistic-view .col-sm-12.col-md-7 .dataTables_paginate {
  flex: 1;
  justify-content: end;
  display: flex;
}
.es-holistic-view .col-sm-12.col-md-7 .dataTables_paginate .active .page-link {
  background: #F7813D;
  border-color: transparent;
  color: #fff;
}
.es-holistic-view .col-sm-12.col-md-7 .dataTables_paginate li {
  margin: 0 2px;
}
.es-holistic-view .col-sm-12.col-md-7 .dataTables_paginate li .page-link {
  background-color: #E9ECEF;
  color: #495057;
  font-size: 13px;
  border-radius: 2px;
}
.es-holistic-view .col-sm-12.col-md-7 .dataTables_info {
  float: left;
  padding-top: 0 !important;
  font-size: 13px;
  margin-right: 0;
}
.es-holistic-view .col-sm-12.col-md-7 .dataTables_length {
  display: inline-block;
}
.es-holistic-view .col-sm-12.col-md-7 .dataTables_length label {
  width: 100%;
  display: flex;
  align-items: center;
}

body.open-twiq-popup .es-twiq .twiq-overlay,
body.open-twiq-popup .es-twiq .es-quick-links {
  display: block;
}

.es-twiq {
  width: auto;
  position: relative;
  display: inline-block;
}
.es-twiq .twiq-overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
  display: none;
  z-index: 999;
}
.es-twiq .es-twiq-btn {
  background-color: transparent;
  border: none;
  padding: 0;
  font-size: 18px;
}
.es-twiq .es-twiq-btn i {
  color: #000;
}
.es-twiq .es-twiq-popop {
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #FFF;
  width: 100%;
  position: fixed;
  right: 15px;
  bottom: 27px;
  display: none;
  z-index: 9999;
}
.es-twiq .es-twiq-popop .es-twiq-body iframe {
  height: 519px;
}
.es-twiq .es-twiq-popop.twiq-medium {
  max-width: 425px;
  min-width: 425px;
}
.es-twiq .es-twiq-popop.twiq-large {
  max-width: 800px;
  min-width: 800px;
}
.es-twiq .es-twiq-popop .es-twiq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F1F1F1;
  padding: 8px 10px;
}
.es-twiq .es-twiq-popop .es-twiq-header h5, .es-twiq .es-twiq-popop .es-twiq-header .h5 {
  margin-bottom: 0;
}
.es-twiq .es-twiq-popop .es-twiq-header .close-twiq {
  border: none;
  color: #868E96;
  background-color: transparent;
}
.es-twiq .es-twiq-popop .es-twiq-body {
  padding: 15px 15px 0;
}
.es-twiq .es-twiq-popop .es-twig-iframe-body {
  padding: 0px !important;
}
.es-twiq .es-twiq-popop .es-twiq-footer {
  padding: 0 15px 15px;
}
.es-twiq .es-twiq-popop .es-twiq-footer .btns-block {
  padding-top: 15px;
  border-top: 1px solid #DEE2E6;
}

.offcanvas .offcanvas-header button.btn-close:focus {
  opacity: 0.5 !important;
}
.offcanvas .offcanvas-header button.btn-close:hover {
  background: url(/img/side-modal-orange-close.svg) center/1em !important;
  background-repeat: no-repeat !important;
}
.offcanvas nav .breadcrumb {
  flex-wrap: nowrap;
}
.offcanvas nav .breadcrumb li {
  display: inline-block;
  white-space: nowrap;
  max-width: 260px;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 11px;
}

.es-twiq .es-quick-links {
  padding: 0;
  width: 100%;
  max-width: 96px;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #FFF;
  display: none;
  position: fixed;
  right: 15px;
  bottom: 27px;
  min-width: 96px;
  z-index: 999;
  margin-bottom: 0;
}
.es-twiq .es-quick-links .sidebar-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: #868E96;
  font-size: 12px;
  line-height: normal;
  margin: 20px 0;
  cursor: pointer;
  padding: 0 12px;
}
.es-twiq .es-quick-links .sidebar-item.active, .es-twiq .es-quick-links .sidebar-item:hover {
  color: #F7813D;
}
.es-twiq .es-quick-links .sidebar-item.active img.es-twiq-img-active, .es-twiq .es-quick-links .sidebar-item:hover img.es-twiq-img-active {
  display: block;
}
.es-twiq .es-quick-links .sidebar-item.active img.es-twiq-img, .es-twiq .es-quick-links .sidebar-item:hover img.es-twiq-img {
  display: none;
}
.es-twiq .es-quick-links .sidebar-item span {
  border-radius: 4px;
  border: 1px solid #E9ECEF;
  background: #F8F9FA;
  display: flex;
  align-content: center;
  justify-content: center;
  height: 36px;
  width: 36px;
  margin: auto;
  margin-bottom: 2px;
}
.es-twiq .es-quick-links .sidebar-item img {
  width: 25px;
  margin: auto;
}
.es-twiq .es-quick-links .sidebar-item img.es-twiq-img-active {
  display: none;
}

.form-control.w-field.evt-date-time-picker {
  max-width: 250px;
}

.evt-action-message .btn-secondary {
  background: #F7813D;
  border: 1px solid #F7813D;
  height: auto !important;
  font-size: 12px !important;
  line-height: normal;
  border-radius: 2px;
  padding: 2px 6px !important;
}

.es-coordinator-card .es-widget-card-coordinator > div:first-child {
  min-width: 167px;
}

.es-onhold-card .es-widget-card-coordinator > div[class=""] {
  background: #F1F3F5;
  padding-left: 8px;
}

.es-onhold-card .es-widget-card-coordinator > .evt-user-block + div[class=""],
.es-cancel-card .es-widget-card-coordinator > .evt-user-block + div[class=""] {
  padding: 0;
  background: transparent;
  border: 0;
}

.es-onhold-card .progress-bar {
  background-color: #ADB5BD !important;
}

.es-coordinator-card.es-onhold-card .coordinator-grid li.active {
  background: #ADB5BD;
}

.es-cancel-card.es-coordinator-card > .card {
  border-right-color: transparent;
}

.es-cancel-card .es-widget-card-coordinator > div[class=""] {
  background: #FFF5F5;
  padding-left: 7px;
  border-top: 1px solid #FBC09E;
  border-bottom: 1px solid #FBC09E;
  margin: -1px 0;
}

.es-cancel-card .es-stage-divider {
  border-color: #FBC09E;
}

.coordinator-table .coordinator-card-head .es-stage-link {
  cursor: auto;
}

@media only screen and (max-width: 767px) {
  .es-coordinator-card .coordinator-list-view {
    overflow-x: auto;
  }
  .es-coordinator-card .coordinator-list-view li {
    margin-right: 10px;
  }
  .offcanvas .offcanvas-body .row .col-xl-12.mb-2.mb-xl-0.es-flex-between-start {
    padding: 0;
  }
  .offcanvas .offcanvas-body .activity-dropdown-filter {
    flex-wrap: wrap;
    margin-bottom: 0;
    width: 100% !important;
    margin-right: 0;
  }
  .offcanvas .offcanvas-body .activity-dropdown-filter select {
    margin-left: 0 !important;
    margin-bottom: 10px;
    width: 100% !important;
    margin-right: 0 !important;
  }
  .offcanvas .offcanvas-body .container {
    padding: 0 !important;
  }
  .content {
    padding: 0 15px !important;
  }
  .content header .page-info > span.fs-3 {
    font-size: 14px !important;
  }
  .content header nav ol li a {
    font-size: 12px;
  }
  .main-body .es-unsaved-changes {
    padding: 4px 8px 4px 34px;
    font-size: 10px;
    position: relative;
    margin-bottom: 10px;
    top: 0;
    left: 0;
    line-height: 15px;
  }
  .main-body .es-unsaved-changes i {
    position: absolute;
    left: 0;
    line-height: normal;
    height: auto;
  }
  .es-coordinator-template-head .es-add {
    margin-top: 0 !important;
    width: 26px;
  }
  .es-coordinator-page-content .es-coordinator-card {
    padding: 10px;
  }
}
.es-twiq .es-twiq-popop .es-iframe-body {
  max-height: 441px;
  min-height: 441px;
  max-width: 500px;
  width: 94%;
  min-width: auto;
}

.es-iframe-body .es-popup-iframe {
  height: 374px;
}

.es-iframe-body .popup_loader_overlay {
  position: absolute;
  top: 34px;
  left: 0;
  width: 100%;
  height: 94%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  /* Semi-transparent background */
  z-index: 1000;
  /* Ensure it is above other content */
}

.evt-client-sentiments .popup_loader_overlay {
  position: absolute;
  top: 35px;
  left: 0;
  width: 100%;
  height: 92%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  /* Semi-transparent background */
  z-index: 1000;
  /* Ensure it is above other content */
}

.evt-idea .popup_loader_overlay {
  position: absolute;
  top: 35px;
  left: 0;
  width: 100%;
  height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  /* Semi-transparent background */
  z-index: 1000;
  /* Ensure it is above other content */
}

/* Spinner styles */
.loader-spinner {
  margin: auto;
  /* Center the spinner */
}

.select2-container .quick-link-select2-dropdown {
  z-index: 111 !important;
}

.es-idea-form-popup .comment_area_group textarea {
  border: 1px solid #e7e7e7;
  margin: 0;
  height: 100px;
  border-radius: 4px;
  padding: 10px;
  font-size: 13px !important;
  font-weight: normal !important;
  resize: none;
  width: 100%;
}

.pipline_filters {
  padding: 10px 0;
}
.pipline_filters .d-sm-flex .me-3 {
  flex: 0 0 140px;
  max-width: 140px;
}
.pipline_filters label {
  font-size: 12px;
  width: 100%;
}
.pipline_filters span.select2.select2-container {
  max-width: 140px !important;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .pipline_filters {
    justify-content: space-between;
  }
  .pipline_filters > div {
    width: auto;
  }
  .pipline_filters > div select {
    max-width: 110px;
  }
}
.pipline_filters .select2 .selection .select2-selection__rendered span span br {
  display: none;
}
.pipline_filters .select2 .selection .select2-selection__rendered span span span {
  margin-left: 3px;
}

.pipline_filters .pipline_head_btn > div:last-child {
  margin-right: 0 !important;
}

.pipline_filters .es-add {
  margin-top: 0;
}

.content header .cu-filter-block.evt-create-pipeline {
  top: 50px;
}

@media screen and (max-width: 1360px) {
  .es-coordinator-card .es-widget-card-coordinator a.es-edit-pipeline-info i.ri-pencil-line {
    margin: 0;
    position: relative;
    top: 5px;
  }
}
@media screen and (max-width: 991px) {
  .content header .cu-filter-block.evt-create-pipeline {
    top: 60px;
  }
  .pipline_filters .pipline_head_btn {
    justify-content: start;
    margin-top: 5px;
  }
  .pipline_filters .pipline_head_btn .es-add {
    margin-left: 0 !important;
  }
  main header .es-add.es-pipeline-add {
    top: 133px !important;
  }
}
@media screen and (max-width: 767px) {
  .pipline_filters select.form-control {
    margin: 5px 5px 0px 0;
    width: 100% !important;
    float: left;
  }
  .pipline_filters .evt-resetFilters {
    position: relative;
    top: 5px;
  }
  /** pipeline listing page **/
  .es-datatable .table-filters .dataTables_filter#pipelineList_filter {
    width: auto;
  }
  .es-datatable #pipelineList_wrapper .table-filters {
    flex-wrap: nowrap;
  }
  .es-datatable #pipelineList_wrapper .table-filters .es-datatable-filter.escalon-filter {
    flex: 0;
    flex-wrap: wrap;
  }
  .es-datatable #pipelineList_wrapper .table-filters .dataTables_filter label input {
    width: 100%;
  }
  #pipelineList_wrapper .evt-resetFilters {
    position: relative;
    top: -4px;
  }
  .content header .cu-filter-block.evt-create-pipeline {
    top: 69px;
  }
  .es-coordinator-card .es-widget-card-coordinator > div:first-child p {
    white-space: normal;
  }
}
@media screen and (max-width: 576px) {
  .es-datatable #pipelineList_wrapper .table-filters {
    flex-wrap: wrap;
  }
  .es-datatable .table-filters .dataTables_filter#pipelineList_filter {
    width: 100%;
  }
  .es-datatable #pipelineList_wrapper .table-filters .es-datatable-filter.escalon-filter {
    flex: 100%;
  }
  .content header .cu-filter-block.evt-create-pipeline {
    top: 5px;
  }
}
@media screen and (max-width: 360px) {
  .pipline_filters select.form-control {
    width: 100% !important;
    max-width: 100%;
  }
  .pipline_filters .evt-resetFilters {
    position: static;
  }
  .pipline_filters .evt-resetFilters .btn {
    padding-left: 0;
  }
}
.dataTables_info {
  color: #343A40;
}

.dataTables_length {
  margin-left: 6px;
}

.datetimepicker table tr td.active.active,
.datetimepicker table tr td.active:hover.active {
  background: #F7813D !important;
}

.datetimepicker table tr td span.active.active {
  background: #F7813D !important;
}

.datetimepicker th {
  font-size: 12px;
}

.datetimepicker td {
  height: 26px !important;
  font-size: 12px;
  width: 30px !important;
  padding: 5px 5px !important;
  line-height: normal;
  border: 1px solid transparent !important;
}

.datetimepicker th.next,
.datetimepicker th.prev {
  background: #eee;
  cursor: pointer;
}

.datetimepicker th i {
  font-family: remixicon !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  font-size: 15px;
  color: #868E96;
}

.datetimepicker th.prev i:before {
  content: "\ea64";
}

.datetimepicker th.next i:before {
  content: "\ea6e";
}

.datetimepicker table {
  border-collapse: separate;
}

.datetimepicker th.dow {
  font-weight: 400;
}

.datetimepicker td.day.today.active,
.datetimepicker td.day.today,
.datetimepicker td.day.today.active:hover {
  background: #F7813D !important;
  color: #fff !important;
  border-color: transparent !important;
}

.progress .es-no-progress {
  padding-left: 6px;
  padding-right: 6px;
}

.es-twiq .es-twiq-popop .es-twiq-footer .btns-block button.btn {
  margin-left: 5px;
  margin-right: 0;
}

.es-twiq .es-twiq-popop .es-twiq-body .form-group.es-textarea textarea {
  border: 1px solid #ced4da !important;
}

.holistic-static {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.holistic-static ul {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  align-items: center;
  margin-right: 25px;
}
.holistic-static ul li {
  color: #495057;
  font-size: 12px;
  margin-left: 20px;
}
.holistic-static ul li span {
  display: inline-block;
  height: 16px;
  width: 16px;
  vertical-align: middle;
  position: relative;
  top: -1px;
  margin-right: 0px;
  border-radius: 60px;
}
.holistic-static ul li.not-started span {
  background: #CED4DA;
}
.holistic-static ul li.holistic-completed span {
  background: #38D9A9;
}
.holistic-static ul li.holistic-in-progress span {
  background: #FCC419;
}
.holistic-static ul li.holistic-delayed i {
  font-size: 18px;
  color: #F03E3E;
  vertical-align: middle;
}

.es-coordinator-card .es-widget-card-coordinator .es-time {
  font-size: 11px;
}

.es-check-list form .check-list-wrap ul.stage-wrap-list li .form-group.align-items-center {
  align-items: flex-start !important;
}
.es-check-list form .check-list-wrap ul.stage-wrap-list li .form-group.align-items-center label.form-check-label {
  margin-top: 3px;
}

.offcanvas nav .breadcrumb .breadcrumb-item + .breadcrumb-item {
  padding-left: 0.2rem;
}
.offcanvas nav .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  padding-right: 0.2rem;
}

.es-dependent-task .es-select-task .es-custom-popup-field-list > div {
  position: relative;
}
.es-dependent-task .es-select-task .es-custom-popup-field-list > div label {
  padding-right: 18px;
  font-weight: normal;
}
.es-dependent-task .es-select-task .es-custom-popup-field-list > div label i {
  padding-right: 3px !important;
}
.es-dependent-task .es-select-task .es-custom-popup-field-list > div span.right-action-list {
  position: absolute;
  right: 0;
  top: 0px;
}

/******************Holistic view css*********************/
@-moz-document url-prefix() {
  .es-holistic-view {
    scrollbar-color: #b6b4b4 #cfd1d2;
    scrollbar-width: thin;
  }
}
.es-holistic-view {
  overflow-x: auto;
}
.es-holistic-view .task-disabled {
  opacity: 20%;
}
.es-holistic-view::-webkit-scrollbar-track {
  background: #F1F3F5;
}
.es-holistic-view::-webkit-scrollbar {
  height: 4px;
}
.es-holistic-view::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.125);
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
}
.es-holistic-view::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.5);
}
.es-holistic-view table.es-holistic-main-table > tbody > tr > td {
  border-bottom: 1px solid #DEE2E6;
}
.es-holistic-view table.es-holistic-main-table > tbody > tr > td:last-child {
  display: none;
}
.es-holistic-view table.es-holistic-main-table > thead > tr > th:last-child,
.es-holistic-view table.es-holistic-main-table > thead > tr > td:last-child {
  display: none;
}
.es-holistic-view table.es-holistic-main-table > thead > tr > th.es-outer-gap table,
.es-holistic-view table.es-holistic-main-table > thead > tr > td.es-outer-gap table {
  width: 100%;
}
.es-holistic-view table.es-holistic-main-table > thead > tr > th.es-outer-gap table thead tr,
.es-holistic-view table.es-holistic-main-table > thead > tr > td.es-outer-gap table thead tr {
  position: relative;
  box-shadow: 2px 4px 4px 0px rgba(0, 0, 0, 0.03);
}
.es-holistic-view table.es-holistic-main-table > thead > tr > th.es-outer-gap table thead tr th,
.es-holistic-view table.es-holistic-main-table > thead > tr > td.es-outer-gap table thead tr th {
  height: 32px;
  border-bottom: 1px solid #DEE2E6;
  padding: 0;
  background-color: #fff;
}
.es-holistic-view table.es-holistic-main-table > thead > tr > .outer-group-td > table > thead > tr {
  position: relative;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.03);
}
.es-holistic-view table.es-holistic-main-table > thead > tr > .outer-group-td > table tbody tr .group-task-td table.outer-group-table tbody tr td {
  border-bottom: 1px solid #DEE2E6;
}
.es-holistic-view table.es-holistic-main-table th {
  font-weight: 500;
  color: #495057;
}
.es-holistic-view table.es-holistic-main-table td {
  padding: 0;
}
.es-holistic-view table.es-holistic-main-table td.es-outer-gap {
  vertical-align: baseline;
}
.es-holistic-view table.es-holistic-main-table td.es-outer-gap table td {
  border-bottom: 1px solid #DEE2E6;
}
.es-holistic-view table.es-holistic-main-table .es-outer-gap {
  width: 30px;
}
.es-holistic-view table.es-holistic-main-table > thead tr th {
  background-color: #F8F9FA;
  padding: 10px 20px;
}
.es-holistic-view table.es-holistic-main-table > thead tr th.es-outer-th {
  background-color: #F1F3F5;
  text-align: center;
}
.es-holistic-view table.es-holistic-main-table tbody tr td.outer-group-td > table,
.es-holistic-view table.es-holistic-main-table thead tr td.outer-group-td > table {
  width: 100%;
}
.es-holistic-view table.es-holistic-main-table tbody tr td.outer-group-td > table > tbody,
.es-holistic-view table.es-holistic-main-table thead tr td.outer-group-td > table > tbody {
  border-right: 1px solid #dee2e6;
}
.es-holistic-view table.es-holistic-main-table tbody tr td.outer-group-td table th,
.es-holistic-view table.es-holistic-main-table thead tr td.outer-group-td table th {
  border-bottom: 1px solid #DEE2E6;
  padding: 6px 0;
}
.es-holistic-view table.es-holistic-main-table tbody tr td.outer-group-td table th.group-list-heading, .es-holistic-view table.es-holistic-main-table tbody tr td.outer-group-td table th.inner-table-space,
.es-holistic-view table.es-holistic-main-table thead tr td.outer-group-td table th.group-list-heading,
.es-holistic-view table.es-holistic-main-table thead tr td.outer-group-td table th.inner-table-space {
  background-color: #fff !important;
}
.es-holistic-view table.es-holistic-main-table tbody tr td.outer-group-td table th.group-list-heading span.group-list-name-ellipses, .es-holistic-view table.es-holistic-main-table tbody tr td.outer-group-td table th.inner-table-space span.group-list-name-ellipses,
.es-holistic-view table.es-holistic-main-table thead tr td.outer-group-td table th.group-list-heading span.group-list-name-ellipses,
.es-holistic-view table.es-holistic-main-table thead tr td.outer-group-td table th.inner-table-space span.group-list-name-ellipses {
  white-space: nowrap;
  max-width: 100px;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: normal;
  vertical-align: middle;
}
.es-holistic-view table.es-holistic-main-table tbody tr td.outer-group-td table .group-task-td,
.es-holistic-view table.es-holistic-main-table thead tr td.outer-group-td table .group-task-td {
  min-width: 100px;
  background-color: rgba(251, 251, 252, 0.5);
}
.es-holistic-view table.es-holistic-main-table tbody tr td.outer-group-td table .group-task-td .outer-group-table tr td,
.es-holistic-view table.es-holistic-main-table thead tr td.outer-group-td table .group-task-td .outer-group-table tr td {
  width: 20px;
  min-width: 20px;
  max-width: 20px;
  text-align: center;
  padding: 10px 0px;
  border-right: 1px solid #DEE2E6;
  border-left: 1px solid #DEE2E6;
  line-height: normal;
  position: relative;
}
.es-holistic-view table.es-holistic-main-table tbody tr td.outer-group-td table .group-task-td .outer-group-table tr td .table-list-delayed,
.es-holistic-view table.es-holistic-main-table thead tr td.outer-group-td table .group-task-td .outer-group-table tr td .table-list-delayed {
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 14px;
  color: #F03E3E;
}
.es-holistic-view table.es-holistic-main-table tbody tr td.outer-group-td table .group-task-td:nth-last-child(2) .outer-group-table tr td:nth-child(5),
.es-holistic-view table.es-holistic-main-table thead tr td.outer-group-td table .group-task-td:nth-last-child(2) .outer-group-table tr td:nth-child(5) {
  border-right: 0 !important;
}
.es-holistic-view table.es-holistic-main-table tbody tr td.outer-group-td table td.inner-table-space,
.es-holistic-view table.es-holistic-main-table thead tr td.outer-group-td table td.inner-table-space {
  background-color: rgba(251, 251, 252, 0.5);
  vertical-align: middle;
  padding: 0;
  margin: 0;
}
.es-holistic-view table.es-holistic-main-table tbody tr td.outer-group-td > table > thead > tr th.inner-table-space:last-child,
.es-holistic-view table.es-holistic-main-table thead tr td.outer-group-td > table > thead > tr th.inner-table-space:last-child {
  display: none;
}
.es-holistic-view table.es-holistic-main-table tbody tr td.outer-group-td > table > tbody > tr td.inner-table-space:last-child,
.es-holistic-view table.es-holistic-main-table thead tr td.outer-group-td > table > tbody > tr td.inner-table-space:last-child {
  display: none;
}
.es-holistic-view table.es-holistic-main-table .inner-table-space {
  width: 20px;
  min-width: 20px;
}
.es-holistic-view table.es-holistic-main-table tbody tr.es-holistic-client-row td.es-holistic-client {
  vertical-align: middle;
}
.es-holistic-view table.es-holistic-main-table tbody tr.es-holistic-client-row td.es-holistic-client:first-child {
  border-top: 1px solid #DEE2E6;
}
.es-holistic-view table.es-holistic-main-table tbody tr.es-holistic-client-row table.outer-group-table td {
  padding: 22px 0 !important;
}
.es-holistic-view table.es-holistic-main-table tbody tr.es-holistic-client-row > .outer-group-td {
  border-bottom: none !important;
}
.es-holistic-view table.es-holistic-main-table tbody tr.es-holistic-client-row > .outer-group-td table tbody tr .group-task-td table.outer-group-table tbody tr td {
  border-bottom: 1px solid #DEE2E6;
}
.es-holistic-view span.holistic-task-name {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotateZ(180deg);
  height: 80px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.es-holistic-view .task-status {
  display: inline-block;
  height: 16px;
  width: 16px;
  border-radius: 50px;
  cursor: pointer;
  vertical-align: middle;
}
.es-holistic-view .task-green {
  background-color: #38D9A9;
}
.es-holistic-view .task-red {
  background-color: #FF8787;
}
.es-holistic-view .task-yellow {
  background-color: #FCC419;
}
.es-holistic-view .task-gray {
  background-color: #CED4DA;
}
.es-holistic-view td.es-holistic-client {
  vertical-align: baseline;
  background-color: #fff;
  z-index: 1;
}
.es-holistic-view td.es-holistic-client .holistic-client-info {
  min-height: 3.8rem;
  position: relative;
  padding-top: 10px;
}
.es-holistic-view td.es-holistic-client .holistic-client-info::after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #DEE2E6;
  right: -1px;
  top: 0;
  position: absolute;
}
.es-holistic-view td.es-holistic-client table tr td {
  height: 32px;
  border-bottom: 1px solid #DEE2E6;
}
.es-holistic-view .es-holistic-client {
  width: 250px;
  min-width: 250px;
  position: sticky;
  left: 0;
}
.es-holistic-view .es-holistic-client .client-left-bdr {
  width: 100%;
  height: 103px;
  position: relative;
  border-bottom: none;
}
.es-holistic-view .es-holistic-client .client-left-bdr::after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #DEE2E6;
  right: -1px;
  top: 0;
  position: absolute;
}
.es-holistic-view .es-holistic-client table {
  width: 100%;
}
.es-holistic-view .es-holistic-client .progress {
  width: 35px;
  height: 4px;
  margin-right: 5px;
  cursor: auto;
  align-self: center;
}
.es-holistic-view .es-holistic-client .holi-client-info,
.es-holistic-view .es-holistic-client .holistic-client-info {
  color: #868E96;
  padding: 0 15px;
}
.es-holistic-view .es-holistic-client .holi-client-info span,
.es-holistic-view .es-holistic-client .holistic-client-info span {
  font-size: 12px;
  color: #868E96;
}
.es-holistic-view .es-holistic-client .holi-client-info h4, .es-holistic-view .es-holistic-client .holi-client-info .h4,
.es-holistic-view .es-holistic-client .holistic-client-info h4,
.es-holistic-view .es-holistic-client .holistic-client-info .h4 {
  margin-bottom: 5px;
  font-size: 13px;
  color: #343A40;
  white-space: nowrap;
  max-width: 150px;
  text-overflow: ellipsis;
  overflow: hidden;
}
.es-holistic-view .es-holistic-client .holi-client-info h5, .es-holistic-view .es-holistic-client .holi-client-info .h5,
.es-holistic-view .es-holistic-client .holistic-client-info h5,
.es-holistic-view .es-holistic-client .holistic-client-info .h5 {
  font-size: 12px;
  color: #495057;
  font-weight: 400;
  text-align: right;
}
.es-holistic-view .es-holistic-client .holi-client-info h5 i, .es-holistic-view .es-holistic-client .holi-client-info .h5 i,
.es-holistic-view .es-holistic-client .holistic-client-info h5 i,
.es-holistic-view .es-holistic-client .holistic-client-info .h5 i {
  color: #F03E3E;
}
.es-holistic-view .es-holistic-client .holi-client-info .es-red-status,
.es-holistic-view .es-holistic-client .holistic-client-info .es-red-status {
  color: #F03E3E;
}
.es-holistic-view .es-holistic-client .holi-client-info .es-mini-progress,
.es-holistic-view .es-holistic-client .holistic-client-info .es-mini-progress {
  justify-content: end;
}

.es-tab-section-left .nav-tabs {
  list-style-type: none;
  padding: 0 15px 0 0;
  text-align: center;
  border: none;
}
.es-tab-section-left .nav-tabs li.hover {
  color: #fc8e25;
}
.es-tab-section-left .nav-tabs li button {
  color: #666;
  font-weight: 600;
  text-align: left;
  font-size: 13px;
  position: relative;
  width: 100%;
  padding: 10px 0;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  border-right: 3px solid transparent;
  border-radius: 0;
}

.es-holistic-view .task-disabled {
  opacity: 20%;
}
.es-holistic-view .col-sm-12.col-md-5 {
  display: none;
}
.es-holistic-view .col-sm-12.col-md-7 {
  flex: 0 0 100%;
  max-width: 100%;
}
.es-holistic-view .col-sm-12.col-md-7 .dataTables_paginate {
  flex: 1;
  justify-content: end;
  display: flex;
}
.es-holistic-view .col-sm-12.col-md-7 .dataTables_paginate .active .page-link {
  background: #F7813D;
  border-color: transparent;
  color: #fff;
}
.es-holistic-view .col-sm-12.col-md-7 .dataTables_paginate li {
  margin: 0 2px;
}
.es-holistic-view .col-sm-12.col-md-7 .dataTables_paginate li .page-link {
  background-color: #E9ECEF;
  color: #495057;
  font-size: 13px;
  border-radius: 2px;
}
.es-holistic-view .col-sm-12.col-md-7 .dataTables_info {
  float: left;
  padding-top: 0 !important;
  font-size: 13px;
  margin-right: 0;
}
.es-holistic-view .col-sm-12.col-md-7 .dataTables_length {
  display: inline-block;
}
.es-holistic-view .col-sm-12.col-md-7 .dataTables_length label {
  width: 100%;
  display: flex;
  align-items: center;
}

.holistic-view-filter .select2 {
  margin-right: 10px;
}
.holistic-view-filter .select2 .select2-selection .select2-selection__placeholder {
  color: #495057;
}
.holistic-view-filter .select2 .select2-selection .select2-selection__arrow {
  background-image: url(/img/arrow-down-s-line.png) !important;
  background-repeat: no-repeat;
  background-position: 98%;
  background-size: 13px;
  padding-right: 25px;
  border-color: #ced4da;
  top: 2.5px;
}
.holistic-view-filter .select2 .select2-selection .select2-selection__arrow b {
  display: none;
}

.es-render-cem-controller-content {
  border: 1px solid #DEE2E6;
  margin: 14px;
  padding: 0px !important;
  overflow: auto;
  max-height: 300px;
  height: 100%;
}
.es-render-cem-controller-content::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.es-render-cem-controller-content::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.es-render-cem-controller-content::-webkit-scrollbar-thumb {
  background: #888;
}
.es-render-cem-controller-content::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.es-render-cem-controller-content .es-render-cem-table-responsive {
  border-radius: 3px;
  white-space: nowrap;
  overflow-x: auto;
  min-width: 990px;
}
.es-render-cem-controller-content table {
  width: 100%;
}
.es-render-cem-controller-content table tr {
  height: auto !important;
  max-height: 65px !important;
  overflow: hidden;
  border-bottom: 1px solid #eaeaea;
}
.es-render-cem-controller-content table tr th {
  background-color: #F8F9FA;
  border: none;
  color: #495057;
  font-size: 13px;
  padding: 6px 15px;
  line-height: normal;
  font-weight: 500;
}
.es-render-cem-controller-content table tr th .bg-custom {
  background-color: #dee2e6 !important;
}
.es-render-cem-controller-content table tr th small, .es-render-cem-controller-content table tr th .small {
  color: #868E96 !important;
}
.es-render-cem-controller-content table tr .fixed-bg-color {
  background-color: #fbfbfb;
}
.es-render-cem-controller-content table tr .hours-bg-color {
  background-color: rgba(238, 238, 238, 0.69);
}
.es-render-cem-controller-content table tr .bg-custom {
  background-color: #dee2e6 !important;
}
.es-render-cem-controller-content table tr td:first-child {
  padding-left: 15px !important;
}
.es-render-cem-controller-content table tr td .actual_col {
  text-align: center;
  display: flex;
  justify-content: space-around;
  position: relative;
  right: 14px;
}
.es-render-cem-controller-content table tr td .actual_col span {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 11px;
  color: #83898e;
  display: inline-block;
  flex: 1;
  padding: 0 5px;
}
.es-render-cem-controller-content table tr td .budget-hours {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.es-render-cem-controller-content table tr td .budget-hours .fixedBudgetDiff {
  color: #31e431;
}

.es-datatable table.table thead tr th.progress-col,
.es-datatable table.table tbody tr td.progress-col {
  min-width: 120px;
  padding-left: 50px !important;
}

.pipline_filters select {
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 200px;
  margin-left: 0 !important;
}

.offcanvas .es-action-buttons {
  width: 100%;
  display: flex;
  justify-content: end;
}

.offcanvas .es-action-buttons .btn {
  margin: 0rem 0rem 0 0.44rem !important;
  height: 30px !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.offcanvas .es-action-buttons .btn.es-mark-as-done {
  margin-right: auto !important;
  background-color: #04c89d;
  border-color: #04c89d;
}

.coordinator-card-head .es-stage-head-link {
  margin-right: auto;
}

.coordinator-card-head .es-stage-head-link .es-stage-link {
  position: relative;
  top: -6px;
}

.coordinator-card-head h4 .es-stage-name, .coordinator-card-head .h4 .es-stage-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 111px;
  display: inline-block;
}

.coordinator-card-head > div {
  position: relative;
  top: -3px;
}

.coordinator-card-head .evt-group-stage-dependency-name .es-stage-head-link .es-stage-link {
  position: static;
}

.es-coordinator-card .progress {
  cursor: auto;
}

#pipelineList_wrapper .es-datatable-filter select.form-control {
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 200px;
}

main header .es-add.es-pipeline-add {
  top: 116px !important;
  right: 15px !important;
}

@media screen and (max-width: 767px) {
  .es-datatable #pipelineList_wrapper .table-filters {
    display: block;
  }
  .es-datatable #pipelineList_wrapper .table-filters #pipelineList_filter {
    text-align: left;
  }
  .es-datatable #pipelineList_wrapper .table-filters #pipelineList_filter label {
    float: none;
    justify-content: flex-start;
  }
  .es-datatable #pipelineList_wrapper .table-filters #pipelineList_filter label input.form-control {
    width: 96%;
  }
  .es-datatable #pipelineList_wrapper .es-datatable-filter {
    margin: 10px 0 0;
    padding: 0 !important;
  }
  div#pipelineList_wrapper > .row > div {
    padding-right: 0 !important;
  }
  #pipelineList_wrapper .es-datatable-filter select.form-control {
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 100%;
    width: 100% !important;
    margin: 0 !important;
  }
  #pipelineList_wrapper .es-datatable-filter select.form-control:nth-child(2) {
    margin: 0 !important;
  }
  main header .es-add.es-pipeline-add {
    top: 0 !important;
  }
}
.es-coordinator-card .coordinator-table {
  padding: 10px 0 0;
}

.es-coordinator-card .coordinator-table .coordinator-card-head {
  margin: 0 15px;
}

.coordinator-table table.es-files-tree thead tr th:first-child {
  border-left: 15px solid #fff;
}

.coordinator-table table.es-files-tree thead tr th:last-child {
  border-right: 15px solid #fff;
}

.coordinator-table table.es-files-tree tbody.documents-tab-content tr td:first-child {
  border-left: 12px solid #fff !important;
}

.coordinator-table table.es-files-tree tbody.documents-tab-content tr td:last-child {
  border-right: 15px solid #fff;
}

.coordinator-table table.es-files-tree tbody.documents-tab-content tr.folder-open,
.coordinator-table table.es-files-tree tbody.documents-tab-content tr.folder:hover {
  background: #F8F9FA;
  border-left: 15px solid #F8F9FA;
  border-right: 15px solid #F8F9FA;
}

.coordinator-table table.es-files-tree tbody.documents-tab-content tr.folder:hover i.coordinator-list-arrow.ri-arrow-right-s-line {
  position: relative;
  left: -1px;
}

.coordinator-table table.es-files-tree tbody.documents-tab-content tr.folder:hover {
  border-right: 13px solid #F8F9FA;
}

.coordinator-table table.es-files-tree tbody.documents-tab-content .folder-open.task-outer-wrap td {
  background: #fff;
  border: 0;
  border-bottom: 1px solid #DEE2E6 !important;
  border-top: 1px solid #DEE2E6;
}

.coordinator-table table.es-files-tree tbody.documents-tab-content .folder-open.task-outer-wrap td {
  border-bottom: 1px solid #DEE2E6;
}

.coordinator-table table.es-files-tree tbody.documents-tab-content .folder-open.task-outer-wrap td:first-child {
  border: none !important;
}

.coordinator-table table.es-files-tree tbody.documents-tab-content .folder-open.task-outer-wrap td:last-child::after {
  content: "";
  width: 1px;
  height: 100%;
  background: #DEE2E6;
  position: absolute;
  right: 0;
  top: 0;
}

.coordinator-table table.es-files-tree tbody.documents-tab-content .folder-open.task-outer-wrap td.folder-task-name {
  border-left: 1px solid #DEE2E6;
}

.coordinator-table table.es-files-tree tbody.documents-tab-content tr.spacing-issue {
  background: #F8F9FA;
  border-left: 15px solid #F8F9FA;
  border-right: 15px solid #F8F9FA;
}

.coordinator-table table.es-files-tree tbody.documents-tab-content tr.folder-open.last-folder-open td {
  border: 0;
}

.coordinator-table table.es-files-tree tbody.documents-tab-content tr.folder-open:hover {
  background: #F8F9FA !important;
}

.coordinator-table table.es-files-tree tbody.documents-tab-content tr.folder-open.first-folder-open td.folder-task-name {
  border-top-left-radius: 5px;
}

.coordinator-table table.es-files-tree tbody.documents-tab-content tr.folder-open.first-folder-open td:last-child {
  border-top-right-radius: 5px;
}

.coordinator-table table.es-files-tree tbody.documents-tab-content tr.folder-open.last-folder-open td.folder-task-name {
  border-bottom-left-radius: 5px;
}

.coordinator-table table.es-files-tree tbody.documents-tab-content tr.folder-open.last-folder-open td:last-child {
  border-bottom-right-radius: 5px;
}

.coordinator-table table.es-files-tree tbody.documents-tab-content tr:first-child td {
  border-top: 1px solid #DEE2E6 !important;
}

.coordinator-table table.es-files-tree tbody.documents-tab-content tr.folder-open:first-child td {
  border: 0 !important;
}

.coordinator-table table.es-files-tree tbody.documents-tab-content tr:nth-last-child(2) td {
  border-bottom: 0 !important;
}

.es-assign-role-row .form-group {
  margin-bottom: 8px;
}

.es-assign-role-row .form-group label {
  margin: 0;
}

.es-assign-role-row .form-group .form-control {
  margin-bottom: 0;
}

.es-coordinator-card img.es-client-pop {
  filter: invert(1) contrast(0);
  cursor: pointer;
}
.es-coordinator-card img.es-client-pop:hover {
  filter: unset;
}
.es-coordinator-card .ri-file-copy-line {
  font-size: 13px !important;
}
.es-coordinator-card .es-client-pop {
  opacity: 0;
  transition: all 0.2s ease;
  padding-left: 4px;
  font-size: 13px;
  width: 14px;
  cursor: pointer;
}
.es-coordinator-card .es-widget-card-coordinator > div:hover .es-client-pop {
  visibility: visible;
  width: 14px;
  opacity: 1;
}
.es-coordinator-card .es-widget-card-coordinator > div:hover i.user-email {
  opacity: 1;
}
.es-coordinator-card .es-files-tree td:hover .es-client-pop {
  visibility: visible;
  width: 14px;
  opacity: 1;
}
.es-coordinator-card .es-files-tree td:hover i.user-email {
  opacity: 1;
}

.info-card-content table .cem-controller-name {
  min-width: 145px !important;
}

.page-info span.es-template-version {
  font-size: 14px;
  font-weight: 500;
}

.es-pipiline-alert {
  width: 100%;
  max-width: 500px;
  border-radius: 0px 0px 2px 2px;
  background: #F8F9FA;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.24);
}
.es-pipiline-alert.es-notify-hold .skew-section p, .es-pipiline-alert.es-notify-draft .skew-section p {
  line-height: 17px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .es-pipiline-alert.es-notify-hold .skew-section p, .es-pipiline-alert.es-notify-draft .skew-section p {
    min-height: auto;
    line-height: normal;
  }
}
.es-pipiline-alert h2, .es-pipiline-alert .h2 {
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .es-pipiline-alert h2, .es-pipiline-alert .h2 {
    font-size: 14px;
    margin: 4px 0;
  }
}
.es-pipiline-alert .skew-section {
  background-color: #F1F3F5;
  padding: 10px;
  transform-origin: left;
  transform: skew(30deg);
  margin-right: -20px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 30px;
}
@media only screen and (max-width: 767px) {
  .es-pipiline-alert .skew-section {
    padding: 5px;
  }
}
.es-pipiline-alert .skew-section p {
  transform: skew(-30deg);
}
.es-pipiline-alert p {
  margin-bottom: 0;
  font-size: 12px;
  color: #495057;
  padding: 0 6px;
}
.es-pipiline-alert.configure-pipeline {
  overflow: hidden;
}
.es-pipiline-alert.cancelled-pipeline {
  background-color: #FA5252;
}
.es-pipiline-alert.cancelled-pipeline h2, .es-pipiline-alert.cancelled-pipeline .h2 {
  color: #fff;
  text-transform: uppercase;
}
.es-pipiline-alert.cancelled-pipeline .skew-section {
  background-color: #E14A4A;
}
.es-pipiline-alert.cancelled-pipeline .skew-section p {
  color: #fff;
}
.es-pipiline-alert .es-pipeline-alrt-footer {
  background-color: #FDFDFD;
  padding: 4px 15px !important;
  align-items: center;
  height: auto !important;
  font-size: 12px !important;
}
.es-pipiline-alert .es-pipeline-alrt-footer img {
  margin-top: -30px;
  width: 160px;
}
@media only screen and (max-width: 767px) {
  .es-pipiline-alert .es-pipeline-alrt-footer img {
    margin-top: -30px;
    margin-bottom: 5px;
  }
}
@media only screen and (max-width: 767px) {
  .es-pipiline-alert .es-pipeline-alrt-footer .pipeline-footer-info {
    line-height: normal;
  }
}
.es-pipiline-alert .es-pipeline-alrt-footer .pipeline-footer-info span {
  color: #868E96;
}
.es-pipiline-alert .es-pipeline-alrt-footer .pipeline-footer-info span::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50px;
  background-color: #868E96;
  display: inline-block;
  vertical-align: middle;
  margin: 0 6px;
}
@media only screen and (max-width: 767px) {
  .es-pipiline-alert .es-pipeline-alrt-footer {
    flex-wrap: wrap;
    justify-content: center !important;
    font-size: 11px !important;
  }
}

.es-coordinator-template-head .es-pipiline-alert.configure-pipeline {
  overflow: hidden;
  position: absolute;
  bottom: 13px;
  right: 18%;
  margin: auto;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .es-coordinator-template-head .es-pipiline-alert.configure-pipeline {
    bottom: auto;
    right: 0;
    top: -57px;
  }
}
@media only screen and (max-width: 767px) {
  .es-coordinator-template-head .es-pipiline-alert.configure-pipeline {
    position: static;
    max-width: 100%;
  }
}

div#pipelineList_wrapper .table-filters .dataTables_filter label,
#evt-template-list_wrapper .table-filters .dataTables_filter label {
  flex-wrap: wrap;
  font-size: 12px;
  justify-content: start !important;
  font-weight: 500;
}
div#pipelineList_wrapper .table-filters .dataTables_filter label input,
#evt-template-list_wrapper .table-filters .dataTables_filter label input {
  width: 100% !important;
}
div#pipelineList_wrapper .table-filters .es-datatable-filter > div,
#evt-template-list_wrapper .table-filters .es-datatable-filter > div {
  margin-right: 0 !important;
}
div#pipelineList_wrapper .table-filters .es-datatable-filter label,
#evt-template-list_wrapper .table-filters .es-datatable-filter label {
  font-size: 12px;
  margin-left: 7px;
  display: block;
}
@media only screen and (max-width: 767px) {
  div#pipelineList_wrapper .table-filters .es-datatable-filter label,
  #evt-template-list_wrapper .table-filters .es-datatable-filter label {
    margin-left: 0;
  }
}
div#pipelineList_wrapper .table-filters .es-reset,
#evt-template-list_wrapper .table-filters .es-reset {
  margin-top: 17px;
}
@media only screen and (max-width: 767px) {
  div#pipelineList_wrapper .table-filters .es-reset,
  #evt-template-list_wrapper .table-filters .es-reset {
    margin-top: 0 !important;
    padding-left: 0 !important;
  }
}

.es-card-section table.userList {
  white-space: nowrap;
}

.progress-outer-wrap .progress {
  flex: 1;
  margin-right: 5px;
}

@media only screen and (max-width: 767px) {
  .es-coordinator-template-head .pipline_filters .me-3 {
    margin-right: 0 !important;
  }
}
.es-coordinator-template-head .pipline_filters div .es-reset {
  margin-top: 17px;
}
@media only screen and (max-width: 767px) {
  .es-coordinator-template-head .pipline_filters div .es-reset {
    margin-top: 0;
  }
}

body > span.select2-container.select2-container--open {
  z-index: 999 !important;
}
body .es-tabs .es-card-body .form-group.es-select .select2.select2-container {
  width: 100% !important;
}

label.form-label:empty {
  display: none;
}

.no-comment-available {
  text-align: center;
}
.no-comment-available img {
  max-width: 190px;
}

.coordinator-table table tbody.documents-tab-content tr td p:empty {
  display: none;
}

table.dataTable.table-hover > tbody > tr:hover > * {
  box-shadow: none !important;
  background-color: #EBF7FF !important;
}

.content header .cu-filter-block.es-add.evt-create-new-group {
  top: 38px !important;
}

@media only screen and (max-width: 360px) {
  .es-coordinator-template-head .pipline_filters .d-sm-flex > div {
    margin-bottom: 6px;
    display: inline-block;
    width: 100%;
  }
}
@media only screen and (min-width: 361px) and (max-width: 767px) {
  .es-coordinator-template-head .pipline_filters .d-sm-flex {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
  }
  .es-coordinator-template-head .pipline_filters .d-sm-flex > div {
    padding: 0 6px;
    margin-bottom: 6px;
    flex: auto;
    max-width: 100%;
  }
  .es-coordinator-template-head .pipline_filters .d-sm-flex > div label {
    float: left;
    width: 100%;
  }
  .es-coordinator-template-head .pipline_filters .d-sm-flex > div select.form-control {
    max-width: 100% !important;
  }
  .es-pipline_head_btn_col {
    justify-content: flex-start !important;
  }
  .evt-resetFilters {
    display: flex;
  }
}
@media (max-width: 376px) {
  .es-coordinator-template-head .pipline_filters .d-sm-flex > div {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .pipline_filters span.select2.select2-container {
    max-width: 100% !important;
  }
}
.crm-widget .es-edit-pipeline-info i {
  background-color: #8c949b;
  border-radius: 50%;
  color: #fff !important;
  width: 15px;
  height: 15px;
  font-size: 9px;
  display: inline-block;
  text-align: center;
  line-height: 15px;
}

.offcanvas .qa-input-form label.form-check-label {
  font-size: 11px;
  margin-top: 1px;
}

.select2-container .select2-results__options li span span span {
  color: #868E96;
}

div#offcanvasRight.offcanvas {
  right: 17px;
}

.offcanvas .es-activity .activity_content table tr td {
  white-space: nowrap;
}

.group-wrap-list .form-group li.no-group-found {
  margin-left: -35px;
}

span.select2.select2-container--open {
  box-shadow: 0 0 0 0.25rem rgba(210, 210, 210, 0.25);
}

.page-info nav .breadcrumb .breadcrumb-item + .breadcrumb-item {
  padding-left: 0.2rem;
}
.page-info nav .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  padding-right: 0.2rem;
}

.select2-container.select2-container--open ul.select2-results__options li.select2-results__option.select2-results__option--selected {
  background-color: #757575 !important;
  color: #fff !important;
}
.select2-container.select2-container--open ul.select2-results__options li.select2-results__option.select2-results__option--selected span {
  color: #fff !important;
}

span.select2-container .select2-dropdown.es-pipeline-filter-dropdown {
  min-width: 350px;
}

.es-stage-name {
  font-size: 16px;
}

.es-rightPopupBtn {
  padding: 12px 1rem;
}

.coordinator-table .evt-group-stage-name,
.coordinator-table .evt-group-stage-dependency-name {
  color: #343A40 !important;
}

.modal-backdrop {
  background-color: #CED4DA;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b:before {
  content: "\ea4e";
  display: block;
  font-size: 12px;
  font-family: remixicon !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  color: #868E96;
}

body .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border: 0px !important;
  margin-left: -6px !important;
  margin-top: -6px !important;
}

.es-startDateRevisedDate {
  min-width: 190px;
}

.datepicker table th.prev,
.datepicker table th.next {
  font-size: 0px;
  height: 25px;
  background-color: #eee;
}

.datepicker table th.prev:before,
.datepicker table th.next:before {
  content: "\ea6e";
  font-size: 12px;
  font-family: remixicon !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.datepicker table th.prev:before {
  content: "\ea64";
}

.datepicker table tr td span.active.active {
  background-image: none !important;
  background-color: #f7813d !important;
}

.es-coordinator-card .es-onhold-card .coordinator-grid li.active .es-edit-stage-icon {
  color: #fff !important;
  background-color: #8c949b !important;
}

.es-coordinator-card .es-onhold-card .coordinator-grid li.active .coordinator-card-body .progress-bar {
  background-color: #CED4DA !important;
}

.es-coordinator-card .es-onhold-card .coordinator-grid li.active .coordinator-card-body .progress {
  background-color: #fff !important;
}

.es-custom-form-modal .modal-dialog .modal-content .modal-body.es-popup-scroll {
  padding-top: 2px !important;
}

.es-flyout-base-wrap .es-flyout-closeBtn:hover i {
  color: #F7813D;
}

.table-hover > tbody > tr:hover > * {
  box-shadow: none !important;
  background-color: #F8F9FA !important;
}

body .es-datatable table td.dataTables_empty {
  border-bottom: 0 !important;
  background-color: #fff !important;
}

.progress .progress-bar,
.progress .es-no-progress {
  font-size: 10px;
}

.fw-medium {
  font-weight: 500;
}

.select2-selection__clear {
  position: relative;
  z-index: 1;
}

.highlight-pst-date {
  border: 2px solid #ffec99 !important;
  background-color: #fff9db;
}

.es-datatable .table-filters input.form-control.form-control-sm {
  width: 100%;
}

.offcanvas-body .evt-activity-list-data {
  max-width: 100% !important;
  padding-right: 13px;
  overflow-y: auto;
  height: calc(100vh - 294px);
}

.es-activity .activity_body {
  padding-top: 10px;
}

.activity_content table tr td:not(:first-child) {
  display: inline-block;
}

.es-activity .activity_body .activity_header .topic {
  max-width: initial;
}

.es-add-user-modal .es-multi-select .select2-selection ul.select2-selection__rendered {
  border-bottom: 1px solid #dee2e6;
}

@media screen and (max-width: 1380px) {
  .es-pipiline-alert h2,
  .es-pipiline-alert .h2 {
    font-size: 14px;
  }
  .es-pipiline-alert .skew-section {
    padding: 8px;
    min-height: 60px;
    padding-right: 20px;
  }
  .es-pipiline-alert {
    max-width: 420px;
  }
}
@media screen and (max-width: 1340px) {
  .es-coordinator-card .es-widget-card-coordinator .pipeline-col {
    flex: none;
    width: auto;
  }
}
@media (min-width: 1271px) and (max-width: 1340px) {
  .es-pipiline-alert .es-pipeline-alrt-footer img {
    width: 125px;
  }
  .es-coordinator-template-head .es-pipiline-alert.configure-pipeline {
    right: 160px;
  }
}
@media screen and (max-width: 1270px) {
  .es-coordinator-template-head .es-pipiline-alert.configure-pipeline {
    position: initial;
    margin: 30px auto;
  }
  .pipline_filters {
    width: 100%;
  }
  .es-pipiline-alert .es-pipeline-alrt-footer img {
    width: 120px;
  }
}
@media screen and (max-width: 1220px) {
  .es-processTracker-filters select,
  .es-processTracker-filters .select2 {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .holistic-static ul li.not-started {
    margin: 0px;
  }
  .es-processTracker-filters .holistic-static {
    margin-left: 0;
  }
}
@media screen and (max-width: 991px) {
  main header .es-add.es-pipeline-add {
    right: 0px !important;
  }
  main header .es-add.es-pipeline-add {
    top: 0px !important;
  }
}
@media (max-width: 767px) {
  .es-processTracker-filters .holistic-static ul li {
    margin-right: 8px;
    margin-left: 0px;
  }
  .es-processTracker-filters .holistic-static ul li {
    font-size: 10px;
  }
  .es-processTracker-filters .holistic-static ul {
    margin-right: 8px;
  }
  .es-processTracker-filters .es-btn-save {
    margin-left: 0 !important;
  }
  .es-processTracker-filters .holistic-static {
    flex-wrap: wrap;
  }
  .es-pagination-responsive {
    flex-wrap: wrap;
    justify-content: center !important;
  }
  .es-pagination-responsive .dataTables_paginate {
    justify-content: center !important;
  }
  .es-pagination-responsive .dataTables_paginate,
  .es-pagination-responsive .dataTables_info,
  .es-pagination-responsive .dataTables_length {
    margin-top: 15px !important;
  }
  .es-pagination-responsive .dataTables_paginate {
    min-width: 100%;
  }
  .es-processTracker-filters .es-reset {
    margin-right: 15px;
  }
  .es-tableSpacing div#pipelineList_wrapper .col-sm-12 {
    padding-right: 12px !important;
  }
  div#offcanvasRight.offcanvas {
    right: 0px;
  }
  .es-pipiline-alert .skew-section p {
    transform: none;
  }
  .es-pipiline-alert .skew-section {
    padding: 8px;
    min-height: 40px;
    padding-right: 0px;
    transform: none;
    padding-bottom: 20px;
    padding-top: 15px;
  }
  .es-pipiline-alert h2, .es-pipiline-alert .h2 {
    padding: 15px 0px;
  }
  .es-pipiline-alert .es-pipeline-alrt-footer {
    flex-wrap: wrap;
    justify-content: center !important;
    font-size: 11px !important;
    flex-direction: column;
  }
  .es-pipiline-alert .es-pipeline-alrt-footer img {
    margin-top: -16px;
    margin-bottom: 12px;
  }
}
@media (max-width: 720px) {
  .es-coordinator-card .es-widget-card-coordinator a.es-edit-pipeline-info {
    position: relative;
    top: -33px;
    right: calc(100% - 136px);
  }
}
.es-tracker-dependency-ellipses {
  max-width: 260px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  vertical-align: middle;
  line-height: 18px;
  padding-right: 22px;
}

.es-action-configure-btn.disabled {
  pointer-events: none;
}

span.es-start-pipeline {
  position: relative;
}
span.es-start-pipeline span.evt-config-tooltip {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  cursor: not-allowed;
  display: none;
}
span.es-start-pipeline button.disabled + span {
  display: block;
}

.efs-storge ul.es-files-tree li.type-heading {
  padding: 10px 0;
}
.efs-storge ul.es-files-tree li.type-heading div {
  position: unset !important;
  flex-grow: inherit !important;
  text-align: left;
  flex: 0 0 20%;
  max-width: 20%;
  padding: 0 0 0 20px;
}
.efs-storge ul.es-files-tree li.type-heading div:first-child {
  flex: 0 0 30%;
  max-width: 30%;
}
.efs-storge ul.es-files-tree li.type-heading div.file-tag, .efs-storge ul.es-files-tree li.type-heading div.size {
  flex: 0 0 15%;
  max-width: 15%;
}
.efs-storge ul.es-files-tree .documents-tab-content li {
  padding: 8px 0 !important;
}
.efs-storge ul.es-files-tree .documents-tab-content li:hover {
  background: #EBF7FF;
}
.efs-storge ul.es-files-tree .documents-tab-content li .folder .folder-name.es-with-subtext-cell {
  padding-bottom: 20px;
}
.efs-storge ul.es-files-tree .documents-tab-content li .folder .inner-folder-name {
  padding-left: 0;
  position: relative;
}
.efs-storge ul.es-files-tree .documents-tab-content li .folder .inner-folder-name .form-check-input {
  height: 16px;
  width: 16px !important;
  border: 1px solid #CED4DA !important;
  margin-right: 12px;
  display: inline-block;
  min-width: 16px;
  margin-top: 0;
  border-radius: 0;
}
.efs-storge ul.es-files-tree .documents-tab-content li .folder .inner-folder-name > i {
  color: #FAB005;
  font-size: 20px;
  margin-right: 10px;
}
.efs-storge ul.es-files-tree .documents-tab-content li .folder .inner-folder-name span.component-value {
  color: #0A58CA;
}
.efs-storge ul.es-files-tree .documents-tab-content li .folder .inner-folder-name .es-efs-folder-path-subtxt,
.efs-storge ul.es-files-tree .documents-tab-content li .folder .inner-folder-name .es-efs-file-path-subtxt {
  position: absolute;
  top: 24px;
  left: 30px;
  font-size: 12px;
  max-width: calc(100% - 30px);
  overflow-x: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.efs-storge ul.es-files-tree .documents-tab-content li .folder > div {
  position: unset !important;
  flex-grow: unset;
  text-align: left;
  flex: 0 0 20%;
  max-width: 20%;
  padding: 0 0 0 20px;
}
.efs-storge ul.es-files-tree .documents-tab-content li .folder > div:first-child {
  flex: 0 0 30%;
  max-width: 30%;
}
.efs-storge ul.es-files-tree .documents-tab-content li .folder > div.file-tag, .efs-storge ul.es-files-tree .documents-tab-content li .folder > div.size {
  flex: 0 0 15%;
  max-width: 15%;
}
.efs-storge ul.es-files-tree .documents-tab-content li.file > div {
  position: unset !important;
  flex-grow: unset;
  text-align: left;
  flex: 0 0 20%;
  max-width: 20%;
  padding: 0 0 0 20px;
}
.efs-storge ul.es-files-tree .documents-tab-content li.file > div:first-child {
  flex: 0 0 30%;
  max-width: 30%;
}
.efs-storge ul.es-files-tree .documents-tab-content li.file > div.file-tag, .efs-storge ul.es-files-tree .documents-tab-content li.file > div.size {
  flex: 0 0 15%;
  max-width: 15%;
}
.efs-storge ul.es-files-tree .documents-tab-content li.file .form-check-input {
  height: 16px;
  width: 16px !important;
  border: 1px solid #CED4DA !important;
  margin-right: 12px;
  display: inline-block;
  min-width: 16px;
  margin-top: 0;
  border-radius: 0;
}
.efs-storge ul.es-files-tree .documents-tab-content li.file .file-name > div {
  display: flex;
  align-items: center;
  max-width: calc(100% - 50px);
}
.efs-storge ul.es-files-tree .documents-tab-content li.file .file-name .component-value a {
  color: #495057 !important;
}
.efs-storge ul.es-files-tree .documents-tab-content li.file .file-name.es-with-subtext-cell {
  padding-bottom: 20px;
}
.efs-storge ul.es-files-tree .documents-tab-content li .file-creator {
  color: #0A58CA;
}
.efs-storge ul.es-files-tree .documents-tab-content li .file-name span.file a {
  white-space: pre;
  text-overflow: ellipsis;
  max-width: calc(100% - 0px);
  overflow: hidden;
}
.efs-storge ul.es-files-tree .documents-tab-content li .folder-name .component-value {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.efs-storge.es-file-trash-tab ul.es-files-tree li .component-name,
.efs-storge.es-file-trash-tab ul.es-files-tree li .folder-name {
  flex: 0 0 35% !important;
  max-width: 35% !important;
}
.efs-storge.es-file-trash-tab ul.es-files-tree li .component-name .component-value,
.efs-storge.es-file-trash-tab ul.es-files-tree li .folder-name .component-value {
  white-space: nowrap;
  display: inline-block !important;
  text-overflow: ellipsis;
  overflow: hidden;
}
.efs-storge.es-file-trash-tab ul.es-files-tree li .file-category p .file-creator {
  color: #495057;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: middle;
}
.efs-storge.es-file-trash-tab ul.es-files-tree li > div.created {
  flex: 0 0 160px;
  max-width: 160px;
}

.efs-breadcrumb {
  padding-bottom: 15px;
}
.efs-breadcrumb ul {
  list-style: none;
  margin-bottom: 12px;
  padding-left: 0;
  flex-wrap: wrap;
  gap: 5px;
}
.efs-breadcrumb ul > i {
  color: #868E96;
  font-size: 16px;
  vertical-align: middle;
  line-height: normal;
  margin: 0 5px;
}
.efs-breadcrumb ul li {
  line-height: normal;
  display: flex;
  align-items: center;
}
.efs-breadcrumb ul li span.es-bread-action {
  cursor: pointer;
  color: #0a58ca;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  width: fit-content;
  text-overflow: ellipsis;
  display: inline-block;
  white-space: nowrap;
  max-width: 150px;
}
.efs-breadcrumb ul li i.ri-home-5-line {
  font-size: 16px;
  color: #868E96;
  margin-right: 5px;
}
.efs-breadcrumb ul li.active-efs {
  color: #F7813D;
}
.efs-breadcrumb ul li.active-efs .es-efs-breadcrumb-foldername {
  max-width: 200px;
  text-overflow: ellipsis;
  overflow-x: hidden;
  white-space: pre;
}
.efs-breadcrumb .select-folder-action h3, .efs-breadcrumb .select-folder-action .h3 {
  font-size: 20px;
  color: #495057;
}
.efs-breadcrumb .select-folder-action h3.es-efs-current-folder-name, .efs-breadcrumb .select-folder-action .es-efs-current-folder-name.h3 {
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: calc(100% - 70px);
  overflow-x: hidden;
}
.efs-breadcrumb .select-folder-action h3.es-efs-current-folder-name i.ri-search-line, .efs-breadcrumb .select-folder-action .es-efs-current-folder-name.h3 i.ri-search-line {
  color: #868E96;
  position: relative;
  top: 1.5px;
  margin-right: 4px;
}
.efs-breadcrumb .select-folder-action h3 i, .efs-breadcrumb .select-folder-action .h3 i {
  color: #FAB005;
  font-size: 24px;
}
.efs-breadcrumb .select-folder-action .file-storage-action a {
  color: #212529;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  line-height: normal;
}
.efs-breadcrumb .select-folder-action .file-storage-action a:last-child {
  margin-left: 15px;
  padding-left: 15px;
  border-left: 1px solid #DEE2E6;
}
.efs-breadcrumb .select-folder-action .file-storage-action a i {
  font-size: 20px;
  margin-right: 8px;
}

.es-grp-seting-table .btn.btn-sm.es-reset.btn-link, .es-grp-seting-table .btn-group-sm > .btn.es-reset.btn-link {
  margin-top: 0px !important;
}

.es-files-tree li .folder-name,
.es-files-tree li .file-name {
  flex: 0 0 99% !important;
  max-width: 99% !important;
}

.es-files-tree li .created {
  width: auto !important;
  flex: 0 0 17% !important;
  max-width: 17% !important;
}

.es-files-tree li .info {
  flex: 0 0 17% !important;
  max-width: 17% !important;
}

.es-files-tree li .file-tag,
.es-files-tree li .size {
  flex: 0 0 11% !important;
  max-width: 11% !important;
}

.es-file-trash-tab .es-files-tree li .info {
  flex: 0 0 20% !important;
  max-width: 20% !important;
}

.efs-storge.es-file-trash-tab .es-files-tree li .file-category {
  flex: 0 0 28% !important;
  max-width: 28% !important;
}

.es-files-tree li .file-tag span {
  text-overflow: ellipsis;
  overflow: hidden;
  display: inline-block;
  white-space: nowrap;
  max-width: 100%;
}

.file-creator {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.inner-folder-name {
  max-width: calc(100% - 60px);
}

.es-delete-content {
  word-wrap: break-word;
}

.remove-file .ri-close-line:hover {
  color: #f7813d;
}

.evt-search-dir .inner-folder-name {
  width: 100%;
}

.es-files-tree .evt-search-dir li .component-value {
  max-width: 100%;
  width: fit-content;
}

.file-tab-header {
  border-bottom: 1px solid #FBC09E;
  background: linear-gradient(180deg, #FFF 0%, #FFFAF7 100%);
  margin-bottom: 15px;
  margin-left: -13px;
  margin-right: -13px;
  padding: 10px 13px 0;
}
.file-tab-header .es-tabs ul.nav {
  border: none;
}
.file-tab-header .es-tabs ul.nav li.nav-item button {
  margin-bottom: 2px;
}
.file-tab-header .es-card-body {
  padding: 0 !important;
}

.es-drag-drop {
  border-radius: 2px;
  border: 2px dashed #4DABF7;
  background: rgba(231, 245, 255, 0.4);
  height: 245px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.es-drag-drop i {
  font-size: 24px;
  color: #868E96;
  margin-bottom: 15px;
  display: inline-block;
}
.es-drag-drop p {
  font-size: 13px;
  margin-bottom: 6px;
}

.uploaded-files-wrap {
  margin-top: 16px;
  flex-wrap: wrap;
}
.uploaded-files-wrap h4, .uploaded-files-wrap .h4 {
  margin-bottom: 12px;
  font-size: 13px;
  color: #495057;
  flex: 0 0 100%;
  max-width: 100%;
}
.uploaded-files-wrap .upload-file-items {
  border-radius: 4px;
  border: 1px solid #DEE2E6;
  background: #FFF;
  display: flex;
  padding: 3px 8px;
  margin-right: 15px;
}
.uploaded-files-wrap .upload-file-items .document-name {
  margin-top: 2px;
  margin-left: 6px;
}
.uploaded-files-wrap .upload-file-items .document-name h5, .uploaded-files-wrap .upload-file-items .document-name .h5 {
  font-size: 13px !important;
  font-weight: normal;
  margin-bottom: 0;
  line-height: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100px;
  overflow: hidden;
}
.uploaded-files-wrap .upload-file-items .document-name span {
  color: #868E96;
}
.uploaded-files-wrap .upload-file-items button.btn {
  padding: 0;
  align-self: baseline;
}

.es-efs-activity span.select2-selection span[aria-hidden=true] {
  display: none;
}

.es-popup-confirm-modal .modal-content .modal-header {
  display: none;
}
.es-popup-confirm-modal .modal-content .modal-body {
  margin-bottom: 15px;
}
.es-popup-confirm-modal .modal-content .modal-body p {
  color: #495057;
  font-weight: 500;
}

.modal-backdrop.fade.show + .modal-backdrop.fade.show {
  z-index: 1111;
}

span.es-file-loader {
  margin-left: 4px;
  color: #868E96;
  font-size: 12px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
span.es-file-loader img {
  width: 14px;
  margin-right: 3px;
}

.infected-file {
  display: flex;
  align-items: center;
  color: #FA5252;
}

.infected-file span {
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 130px;
  overflow: hidden;
}

.infected-file i {
  font-size: 20px;
  color: #FA5252;
  margin-left: 5px;
  position: relative;
  top: 1px;
}

.scanning-failed {
  display: flex;
  align-items: center;
  color: #FA5252;
  width: calc(100% - 30px);
}

.scanning-failed span {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.scanning-failed i {
  color: #FA5252;
  margin-left: 5px;
  position: relative;
  top: 1px;
}

.es-icon-font {
  font-size: 13px;
  margin-top: -1px;
}

.es-popup-confirm-modal {
  z-index: 11111;
}

.share-modal-inner {
  margin: 12px 0;
}
.share-modal-inner ul {
  list-style: none;
  padding-bottom: 6px !important;
}
.share-modal-inner ul li {
  color: #495057;
  font-size: 13px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  line-height: normal;
  width: 100%;
}
.share-modal-inner ul li span {
  max-width: calc(100% - 50px);
  display: inline-block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.share-modal-inner ul li i {
  font-size: 20px;
  margin-right: 10px;
}
.share-modal-inner ul li i.ri-close-line {
  font-size: 16px;
  margin-right: 0;
  margin-left: 10px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
}
.share-modal-inner ul li i.ri-folder-open-fill {
  color: #FAB005;
}
.share-modal-inner ul li:hover i.ri-close-line {
  opacity: 1;
  visibility: visible;
}
.share-modal-inner .user-download-info {
  background: #E7F5FF;
  padding: 4px 18px;
  color: #4DABF7;
}
.share-modal-inner .user-download-info i {
  color: #4DABF7;
  font-size: 24px;
  margin-right: 10px;
}

.copy-link {
  display: flex;
  margin-top: 25px;
}
.copy-link .form-group {
  flex: 1;
  margin-bottom: 0;
}
.copy-link .form-group .form-evt-error {
  margin: 0;
}
.copy-link .copy-link-btn {
  background-color: #F7813D;
  height: 30px;
  padding: 0 12px;
  color: #fff;
  font-size: 13px;
  margin-left: 10px;
}

.es-restore-message {
  text-align: center;
  background-color: #fff9db;
  padding: 10px 0;
  border-radius: 3px;
  margin-bottom: 13px;
}
.es-restore-message span {
  color: #94761e !important;
  font-size: 12px !important;
}

.es-action-buttons .es-rename-outline {
  border-color: #F7813D !important;
  color: #F7813D !important;
  background-color: transparent !important;
}

a.es-file-extensions-wiki {
  color: #212529;
  font-size: 12px;
  font-weight: 400;
}

.content header .cu-filter-block.es-add[data-bs-title="Add new client"] {
  top: 47px !important;
}

.es-upload-modal-wrap .es-popup-scroll {
  height: auto !important;
}

.es-page-content input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  height: 16px;
  width: 16px;
  background-image: url(/img/search-close.svg);
  background-size: 16px 16px;
}

#groupList_wrapper table#groupList thead tr th {
  width: 170px !important;
  min-width: 170px !important;
}
#groupList_wrapper table#groupList tbody tr td {
  width: 170px !important;
  min-width: 170px !important;
}
#groupList_wrapper table#groupList tbody tr td i {
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
}
#groupList_wrapper table#groupList tbody tr:hover td i {
  opacity: 1;
  visibility: visible;
}

.es-group-edit input {
  width: 170px;
  margin-right: 15px;
}
.es-group-edit .es-edit-cancel {
  color: #495057;
}

.group-setting {
  padding: 10px 15px;
  border-radius: 2px;
  border: 1px solid #DEE2E6;
  background: #FFF;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.04);
  margin-bottom: 20px;
  margin-top: 10px;
}
.group-setting p {
  margin-bottom: 0;
  margin-top: 8px;
}
.group-setting .group-setting-col {
  flex: 0 0 250px;
  max-width: 250px;
}
.group-setting .group-setting-col .es-popout-show {
  margin-top: 8px;
}

.es-datatable #groupList_wrapper .table-filters .dataTables_filter label {
  font-size: 13px !important;
  flex-wrap: wrap;
  justify-content: start;
  font-weight: 600;
  width: 208px;
}
.es-datatable #groupUserList_wrapper .table-filters .es-datatable-filter {
  position: relative;
}
.es-datatable #groupUserList_wrapper .table-filters .es-datatable-filter .form-evt-error {
  position: absolute;
  bottom: -15px;
  left: 0;
}
.es-datatable #groupUserList_wrapper .table-filters .dataTables_filter label {
  font-size: 13px !important;
  flex-wrap: wrap;
  justify-content: start;
  font-weight: 600;
  width: 208px;
}
.es-datatable #groupUserList_wrapper .table-filters .dataTables_filter label input.form-control {
  width: 100%;
}
.es-datatable #groupUserList_wrapper .table-filters .es-reset {
  margin-top: 15px;
}
.es-datatable #groupUserList_wrapper .table-filters .es-datatable-filter .es-select .es-multi-select span.select2 ul.select2-selection__rendered {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  max-width: 230px !important;
}
.es-datatable #groupUserList_wrapper .table-filters .es-datatable-filter .es-select .es-multi-select span.select2 ul.select2-selection__rendered li.select2-selection__choice {
  margin: 4px 3px 0 0 !important;
  background: #eee;
  border: 1px solid #eee;
  border-radius: 0.215rem;
  padding: 0 4px 0 12px;
}
.es-datatable #groupUserList_wrapper .table-filters .es-datatable-filter .es-select .es-multi-select span.select2 ul.select2-selection__rendered li.select2-selection__choice .select2-selection__choice__remove {
  border-right: 0 !important;
  left: -2px !important;
  font-size: 12px !important;
  background-color: transparent !important;
}
.es-datatable #groupUserList_wrapper .table-filters .es-datatable-filter .es-select .es-multi-select span.select2 ul.select2-selection__rendered li.select2-selection__choice .select2-selection__choice__display {
  font-size: 11px !important;
  line-height: normal;
  padding: 0;
}
.es-datatable #groupUserList_wrapper table#groupList thead tr th {
  width: 170px !important;
  min-width: 170px !important;
}
.es-datatable #groupUserList_wrapper table#groupList tbody tr td {
  width: 170px !important;
  min-width: 170px !important;
}
.es-datatable #groupUserList_wrapper table#groupList tbody tr td i {
  cursor: pointer;
}
.es-datatable #groupUserList_wrapper table#groupUserList thead tr th {
  width: auto !important;
}
.es-datatable #groupUserList_wrapper table#groupUserList thead tr th:last-child {
  width: 200px !important;
}
.es-datatable #groupUserList_wrapper table#groupUserList tbody tr td {
  width: auto !important;
}
.es-datatable #groupUserList_wrapper table#groupUserList tbody tr td:last-child {
  width: 200px !important;
}

.es-add-user-modal .es-multi-select .select2-container.select2-container--open .select2-search textarea {
  margin: 0 !important;
  width: 100% !important;
  height: 30px;
  border-bottom: 1px solid #DEE2E6;
  background-image: url("/img/search-icon.png");
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: 2%;
  padding: 5px 30px;
}
.es-add-user-modal .es-multi-select .select2-container .selection .select2-selection--multiple {
  padding: 0 !important;
  flex-wrap: wrap;
}
.es-add-user-modal .es-multi-select .select2-container .selection .select2-selection--multiple ul.select2-selection__rendered:not(:empty) + .select2-search textarea {
  margin: 0 !important;
  width: 100% !important;
  height: 30px;
  border-bottom: 1px solid #DEE2E6;
  background-image: url("/img/search-icon.png");
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: 2%;
  padding: 5px 30px;
}
.es-add-user-modal .es-multi-select .select2-container .selection .select2-selection--multiple .select2-search {
  width: 100%;
}
.es-add-user-modal .es-multi-select .select2-container .selection .select2-selection--multiple .select2-search textarea {
  margin-top: 0;
}
.es-add-user-modal .es-multi-select .select2-container:last-child {
  position: static !important;
}
.es-add-user-modal .es-multi-select .select2-container:last-child .select2-dropdown {
  box-shadow: none !important;
  position: static !important;
  border: 1px solid #DEE2E6;
  margin-top: -1px;
}
.es-add-user-modal .es-multi-select .select2-container:last-child .select2-dropdown .select2-results ul.select2-results__options {
  padding-top: 6px;
}
.es-add-user-modal .es-multi-select .select2-container:last-child .select2-dropdown .select2-results ul.select2-results__options li {
  background-color: #fff !important;
  color: #343A40 !important;
}
.es-add-user-modal .es-multi-select .form-evt-error {
  margin: 0 !important;
}
.es-add-user-modal .es-multi-select .select2-selection ul.select2-selection__rendered {
  max-width: 100% !important;
  flex: 0 0 100%;
  display: grid;
  order: 2;
  padding: 2px 4px;
  max-height: 150px;
  overflow-y: auto;
  border-bottom: none !important;
}
.es-add-user-modal .es-multi-select .select2-selection ul.select2-selection__rendered li.select2-selection__choice {
  width: auto;
  border: none !important;
  margin: 3px 0 !important;
  background: #F8F9FA !important;
  padding-top: 3px;
  padding-bottom: 2px;
  color: #495057;
  font-weight: 400;
  border-radius: 0 !important;
  width: fit-content;
}
.es-add-user-modal .es-multi-select .select2-selection ul.select2-selection__rendered li.select2-selection__choice button.select2-selection__choice__remove {
  border: none !important;
  font-size: 16px;
  padding: 2px 4px;
}

.es-popout-show img.es-client-pop {
  filter: invert(1) contrast(0);
  cursor: pointer;
}
.es-popout-show img.es-client-pop:hover {
  filter: unset;
}
.es-popout-show .es-client-pop {
  opacity: 0;
  transition: all 0.2s ease;
  padding-left: 4px;
  font-size: 13px;
  width: 14px;
  cursor: pointer;
}
.es-popout-show:hover .es-client-pop {
  visibility: visible;
  width: 14px;
  opacity: 1;
}

.cursor-auto {
  cursor: auto;
}

.file-upload-error {
  border-color: #dc3545 !important;
}

.file-upload-error i.ri-file-damage-line {
  color: #dc3545 !important;
}

.file-upload-error-skip {
  border-color: #dc3545 !important;
}

.file-upload-error-skip i.ri-file-damage-line {
  color: #dc3545 !important;
}

#evt-execute-upload {
  text-decoration: underline;
}

.es-whiteSpace {
  white-space: pre !important;
}

.tooltip .tooltip-inner {
  max-width: 350px;
}

.hide-first-option li:first-child {
  display: none;
}

.es-add-user-modal .es-multi-select .select2-container .selection .select2-selection--multiple ul.select2-selection__rendered:empty + .select2-search textarea {
  border-bottom: 0px;
}

.es-group-modal .modal-dialog {
  max-width: 396px;
}

.es-efs-file-list-item {
  position: relative !important;
}
.es-efs-file-list-item .file-name .es-efs-file-path-subtxt {
  position: absolute;
  top: 30px;
  left: 48px;
  font-size: 13px;
  max-width: 130px;
  overflow-x: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.es-efs-file-list-item .file-name .icon {
  margin-top: 0;
  padding-left: 0;
  top: -1px;
}

.es-files-tree li .info .es-popout-show {
  display: flex;
  align-items: center;
}

.es-folder-rename-update {
  color: #0A58CA;
  margin-right: 10px;
  margin-left: 12px;
  cursor: pointer;
  font-size: 12px;
}

.es-folder-rename-cancel {
  color: #495057;
  cursor: pointer;
  font-size: 12px;
}

.es-files-tree .documents-tab-content.evt-search-dir .component-value a {
  display: inline-block;
}

.form-check.es-input-check .form-check-input:focus {
  border: 1px solid rgba(0, 0, 0, 0.25);
}

div#groupList_wrapper .es-datatable-filter,
div#groupUserList_wrapper .es-datatable-filter {
  margin: 0px;
}

.es-efs-activity .activity_content {
  max-height: 500px;
  overflow-y: auto;
}

.es-efs-activity .text-nowrap span {
  text-overflow: ellipsis;
  max-width: 200px;
  overflow: hidden;
}

#groupList_wrapper table#groupList tbody tr td .evt-show-group-section a.es-whiteSpace {
  max-width: 500px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: inline-block;
}

.evt-page-action {
  display: flex;
  align-items: center;
}

.evt-page-action .es-title-wiki {
  margin-left: 5px;
}

.evt-page-title {
  overflow: hidden;
  display: inline-block;
  text-overflow: ellipsis;
}

.page-info.evt-page-info {
  max-width: 80%;
}

#groupList_wrapper table#groupList tbody tr td .evt-show-group-section {
  display: flex;
  align-items: center;
}

@media (min-width: 992px) {
  .es-efs-permissions details.es-accordion .es-permissions-table .evt-group-list .user-name {
    max-width: 35vw;
  }
}
/* width */
.es-efs-activity .activity_content::-webkit-scrollbar {
  width: 6px;
}

/* Track */
.es-efs-activity .activity_content::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
.es-efs-activity .activity_content::-webkit-scrollbar-thumb {
  background: #fff;
}

/* Track */
.es-efs-activity .activity_content:hover::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.es-efs-activity .activity_content:hover::-webkit-scrollbar-thumb {
  background: #c1c1c1;
}

.efs-breadcrumb ul li:last-child a.evt-back-to-home {
  cursor: initial !important;
}

.es-sync-btn-div .es-btn-primary {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

.es-sync-loader-icon {
  height: 20px;
  margin-right: 5px;
  display: none;
}

.es-sync-btn-div {
  position: absolute;
  right: 13px;
  transform: translateY(-55px);
}

button.btn.es-btn-primary.es-disabled-btn {
  background-color: #f9a777 !important;
  border-color: #f9a777 !important;
  cursor: not-allowed;
}

.es-sync-btn-div.es-disabled-btn,
.es-sync-btn-div.es-disabled-btn .es-btn-primary {
  background-color: #f9a777 !important;
  border-color: #f9a777 !important;
  cursor: not-allowed;
}

.es-sync-btn-div.es-disabled-btn .es-sync-loader-icon {
  display: inline-flex;
}

div#UserActivity-filter span.select2-selection.select2-selection--single,
div#UserActivity-filter select.form-control.activity-user-search-list {
  width: 156px;
  height: 32px;
}

div#UserActivity-filter span.select2-selection.select2-selection--single .select2-selection__rendered,
div#UserActivity-filter span.select2-selection.select2-selection--single button.select2-selection__clear {
  height: 29px;
  display: flex;
  align-items: center;
}

.es-cursor-auto {
  cursor: auto;
}

.es-text-blue {
  color: #0a58ca;
}

.page-info.evt-page-info .fs-3 {
  display: flex;
  align-items: center;
}

.es-team-hover-options {
  position: relative;
}
.es-team-hover-options .es-team-options-links-hover {
  border-radius: 5px;
  display: grid;
  position: absolute;
  right: 0px;
  box-shadow: 0 1px 8px rgba(56, 65, 74, 0.31);
  border: 1px solid #ced4da !important;
  background-color: #ffffff !important;
  bottom: -8px;
  transform: translateY(80%);
  width: max-content;
  transition: 0.5s;
  opacity: 0;
  z-index: -1;
}
.es-team-hover-options .es-team-options-links-hover a.widget-external-link {
  color: #343A40;
  display: flex;
  justify-content: space-between;
  padding: 4px 15px;
  border-bottom: 1px solid #e7e7e7;
}
.es-team-hover-options .es-team-options-links-hover a.widget-external-link i {
  margin-left: 15px;
}
.es-team-hover-options .es-team-options-links-hover a.widget-external-link:last-child {
  border: 0px;
}

.es-team-hover-options:hover .es-team-options-links-hover {
  transform: translateY(100%);
  transition: 0.5s;
  opacity: 1;
  z-index: 1;
}

.es-client-about-desc {
  max-height: 115px;
  overflow-y: auto;
  display: block;
  scrollbar-color: auto;
}

.es-client-about-desc::-webkit-scrollbar {
  width: 8px;
}

/* Track */
.es-client-about-desc::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
.es-client-about-desc::-webkit-scrollbar-thumb {
  background: #c1c1c1;
}

@media (max-width: 1400px) and (min-width: 1024px) {
  .es-card .es-card-header .es-card-tabLinks li a {
    padding: 0.5rem 0.4rem;
    font-size: 11px;
  }
  .es-card .es-card-header .es-card-tabLinks {
    margin-top: 16px;
  }
}
.es-build-form.es-card-section .form-group.es-select i {
  cursor: auto;
}

.es-remove-icon-form-builder:hover {
  color: #dc3545 !important;
}

.bd-example-modal-lg.evt-domain-preview-modal#evt-domain-preview .modal-dialog {
  max-width: 900px;
}

.select2-container--default .select2-selection--multiple {
  border: 1px solid #ced4da;
  background-image: url(/img/arrow-down-s-line.png) !important;
  background-repeat: no-repeat;
  background-position: 98%;
  background-size: 13px;
  padding-right: 25px;
}

.es-custom-form-builder-field:not(:has(.es-form-build-delete)) .es-form-build-copy {
  right: -2px !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #f8f9fa;
  border: 1px solid #f8f9fa;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  border-right: 0px solid #aaa;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice span {
  color: #495057;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
  background-color: #f8f9fa;
  color: #000000;
}

.es-file-title-form-builder {
  width: 250px;
  max-width: fit-content;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice button span {
  font-weight: 400;
  font-size: 17px;
  line-height: 19px;
  color: #868e96;
}

.es-form-builder-file-close {
  margin-top: 2px;
  cursor: pointer;
}

.es-form-builder-feild-settings-row .form-check.form-switch.qa-input-form label.form-check-label {
  width: fit-content !important;
}

.es-form-builder-feild-settings-row .form-check.form-switch.qa-input-form {
  display: inline-grid !important;
}

.es-form-builder-feild-settings-row .flex-shrink-0 {
  width: fit-content;
}

.es-form-builder-feild-settings-row label.form-check-label {
  margin-bottom: 8px !important;
}

.infected-file.es-form-builder-infected-file span {
  max-width: 100%;
}

.scanning-failed.es-form-builder-failed-file {
  max-width: calc(100% - 20px);
  width: fit-content;
}

.scanning-failed.es-form-builder-failed-file span {
  max-width: calc(100% - 0px);
}

.evt-view span.scanning-failed.es-form-builder-failed-file {
  max-width: 100%;
}

.es-temp-apply-changes {
  height: 24px !important;
  line-height: 21px;
  margin-right: 5px !important;
}

.evt-edit .infected-file.es-form-builder-infected-file,
.evt-edit .scanning-failed.es-form-builder-infected-file {
  width: calc(100% - 20px);
}
.evt-edit span.es-uploaded-filename.evt-display-uploaded-filename {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.evt-edit .form-evt-error {
  width: auto;
  overflow: initial !important;
  text-overflow: initial !important;
  display: block;
}

@media (max-width: 1600px) {
  .d-flex.es-form-builder-feild-settings-row.gap-3.row.flex-nowrap.justify-content-between:has(.flex-shrink-0.evt-reserved-field-setting-box:not(.d-none)) {
    margin: 0px;
    gap: 10px !important;
  }
  .d-flex.es-form-builder-feild-settings-row.gap-3.row.flex-nowrap.justify-content-between:has(.flex-shrink-0.evt-reserved-field-setting-box:not(.d-none)) .col-md-5 {
    flex-grow: 1;
    padding: 0px;
    max-width: 170px;
    width: auto;
  }
  .d-flex.es-form-builder-feild-settings-row.gap-3.row.flex-nowrap.justify-content-between:has(.flex-shrink-0.evt-reserved-field-setting-box:not(.d-none)) .flex-shrink-0 {
    padding: 0px;
  }
}
@media (min-width: 1400px) {
  .d-flex.es-form-builder-feild-settings-row.gap-3.row.flex-nowrap.justify-content-between:has(.flex-shrink-0.evt-reserved-field-setting-box.d-none) .col-md-5 {
    width: 50%;
  }
}
.es-selected-file {
  border-radius: 2px;
  border: 1px solid #A5D8FF;
  background: #E7F5FF;
  width: fit-content;
  display: inline-flex;
  padding: 2px 8px;
  align-items: center;
  gap: 8px;
  color: #0A58CA;
  margin-bottom: 15px;
  max-width: 100%;
}

.es-selected-files-wrapper {
  max-width: 100%;
}

.es-selected-file-name {
  max-width: calc(100% - 20px);
}

th.sorting_disabled {
  cursor: auto;
}

@media (max-width: 1680px) {
  .d-flex.es-form-builder-feild-settings-row.gap-5 {
    gap: 10px !important;
  }
}
.es-marquee {
  display: flex;
  align-items: center;
  background: #FFF5ED;
}

.es-announcement-p {
  color: #66625F;
  font-family: Inter;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-right: 30px;
  position: relative;
  padding-left: 10px;
  display: flex;
  align-items: center;
}

.es-announcement-p:before {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  border-radius: 50px;
  background-color: #66625F;
  top: 7px;
  left: 0px;
}

span.es-marquee-emoji {
  position: relative;
  top: -1px;
}

.es-no-bullet:before {
  display: none;
}

div#reviewHours-filter .form-control {
  min-width: 170px;
}

.es-filter-button .es-btn-save {
  height: 32px !important;
  margin-top: 14px !important;
}

.es-review-hours-filter .table-filters.evt-date-range-filter .form-group {
  margin-bottom: 0px;
}

.datepicker.datepicker-dropdown.datepicker-orient-left {
  z-index: 1056 !important;
}

.es-approved-icons {
  background-color: #fff;
  border: 1px solid #E9ECEF;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-weight: 600;
  margin: auto;
  cursor: auto;
  position: relative;
  z-index: 98;
}
.es-approved-icons i.ri-close-line {
  color: #FF6B6B;
}
.es-approved-icons i.ri-check-line {
  color: #51CF66;
}

.es-review-client {
  max-width: 170px;
  width: fit-content;
}

.es-select-client-tr {
  cursor: pointer;
}

.text-grey {
  color: #868E96;
}

.es-review-hours-wrapper.border-grey {
  border-radius: 2px 2px 0px 0px;
  border: 1px solid #DEE2E6;
  background: #FFF;
  max-width: 100%;
  color: #212529;
}

.es-review-table {
  max-width: calc(100% - 434px);
}

.es-review-hours-client,
.es-review-hours-resourcepool {
  border-right: 1px solid #DEE2E6;
}
.es-review-hours-client td,
.es-review-hours-client th,
.es-review-hours-resourcepool td,
.es-review-hours-resourcepool th {
  padding: 5px 15px;
}
.es-review-hours-client th,
.es-review-hours-resourcepool th {
  font-weight: 500;
}
.es-review-hours-client thead,
.es-review-hours-resourcepool thead {
  border-bottom: 1px solid #DEE2E6;
  background-color: #F8F9FA;
}
.es-review-hours-client td,
.es-review-hours-resourcepool td {
  padding: 8px 15px;
}
.es-review-hours-client tr:hover td,
.es-review-hours-resourcepool tr:hover td {
  background-color: #EBF7FF;
}

.es-client-cem {
  color: #868E96;
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
}

.es-reviewHours-client-table-approvals th {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
}

.vertical-top {
  vertical-align: top;
}

.es-reviewHours-serviceline-table thead th {
  vertical-align: middle;
  height: 58px;
}
.es-reviewHours-serviceline-table .es-review.serviceLine-links.active,
.es-reviewHours-serviceline-table .es-review.serviceLine-links:hover {
  background-color: #EBF7FF;
}
.es-reviewHours-serviceline-table .es-review.serviceLine-links {
  cursor: pointer;
}

.es-reviewHours-client-table tr td {
  border-bottom: 1px solid #dee2e6;
  padding: 16px;
}

.es-reviewHours-client-table tr:last-child td {
  border-bottom: 0px;
}

.es-choose-client-service-div {
  min-height: calc(100vh - 355px);
  position: sticky;
  top: 20vh;
}

.font-weight-normal {
  font-weight: 500;
}

.es-review-table-top-band {
  height: 58.5px;
  border-bottom: 1px solid #DEE2E6;
}

.text-blue {
  color: #0A58CA;
}

.text-yellow {
  color: #856404;
}

.es-btn-border {
  border-radius: 2px;
  border: 1px solid #F7813D;
  background: #FFF;
  display: inline-flex;
  padding: 6px 8px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #F7813D;
  height: 32px !important;
}

.es-review-top-band {
  padding: 8px 15px;
  border-radius: 0px 2px 0px 0px;
  background: linear-gradient(90deg, #E7F5FF 0%, #FFF 100%);
  height: 100%;
}
.es-review-top-band .fst-italic {
  max-width: 225px;
}

.es-review-top-band.es-review-user-top-band {
  justify-content: start !important;
}
.es-review-top-band.es-review-user-top-band .es-band-content {
  max-width: 25%;
  width: 100%;
}

.es-btn-border:hover {
  background: #F7813D;
  color: #fff;
}

.es-border-icon-btn {
  height: 32px;
  width: 32px;
  border: 1px solid #DEE2E6;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
  margin-top: 13px;
}
.es-border-icon-btn i {
  font-size: 16px !important;
  color: #868E96;
}

.es-yellow-band {
  border-radius: 4px;
  background: linear-gradient(90deg, #FFF9DB 0%, #FFF 100%);
}
.es-yellow-band .text-yellow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.es-border-icon-btn:hover {
  border: 1px solid #f7813d;
  background-color: #fff;
}
.es-border-icon-btn:hover i {
  color: #f7813d !important;
}

.es-review-table-body {
  max-height: calc(100% - 58px);
  position: relative;
}

.es-invoice-master-filter-div {
  border-bottom: 1px solid #dadada;
  padding-bottom: 20px;
}

.es-reviewHours-client-table {
  min-width: 332px;
}

.bg-blue {
  background: #E6EDF9;
}

.es-reviewtable {
  width: 100%;
}

.es-review-ul-table {
  max-width: 100%;
  overflow: auto;
  border: 1px solid #DEE2E6;
  max-height: calc(100vh - 111px);
}

.es-counter-accounting {
  padding: 0px 17px;
}

.es-review-ul-table::-webkit-scrollbar,
.es-review-hours-client::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.es-review-ul-table::-webkit-scrollbar-thumb,
.es-review-hours-client::-webkit-scrollbar-thumb {
  background-color: #c1c1c1;
}
.es-review-ul-table .es-reviewtable,
.es-review-hours-client .es-reviewtable {
  table-layout: fixed;
}
.es-review-ul-table ul,
.es-review-hours-client ul {
  list-style: none;
  padding: 0;
}
.es-review-ul-table ul .ri-arrow-right-s-fill,
.es-review-hours-client ul .ri-arrow-right-s-fill {
  font-size: 16px;
}

.es-reviewtable-head-ul {
  color: #343A40;
  font-weight: 500;
  line-height: normal;
}

.es-reviewtable-body .es-reviewtable-body-tr > .es-reviewtable-col-hourly {
  padding-left: 20px;
}

.es-reviewtable-body-ul .es-reviewtable-col-hourly {
  padding-left: 16px;
}

.es-reviewtable-collapsed-ul .es-reviewtable-col-hourly i.ri-arrow-right-s-fill {
  padding-left: 0px;
}

.opacity-none {
  opacity: 0;
}

.es-reviewtable-head-col-billable {
  min-width: 95px;
  text-align: right;
  flex-shrink: 0;
  width: 95px;
}

.es-reviewtable-col-billable {
  min-width: 95px;
  text-align: right;
  flex-shrink: 0;
  width: 95px;
}

.es-reviewtable-col-budget {
  min-width: 140px;
  text-align: right;
  flex-shrink: 0;
  width: 140px;
}

.es-review-hours-SKU-wrapper {
  padding-left: 16px !important;
}

.es-div-invoiceable-edit {
  display: flex;
  align-items: end;
  justify-content: center;
  position: relative;
}

.es-div-invoiceable-edit span[data-bs-toggle=tooltip] {
  position: absolute;
  right: 0px;
}

.es-reviewtable-col-invoiceable-edit {
  width: 135px;
  max-width: 135px;
  min-width: 135px;
}

.es-reviewtable-col-rate {
  min-width: 65px;
  text-align: right;
  flex-shrink: 0;
  width: 65px;
}

.es-reviewtable-col-total-amount {
  min-width: 110px;
  text-align: right;
  flex-shrink: 0;
  width: 110px;
}

.es-reviewtable-col-actions {
  min-width: 226px;
  text-align: center;
  flex-shrink: 0;
  width: 226px;
}

.es-reviewtable-col-actions-div .ri-information-line {
  min-width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

.es-border-icon-btn.es-logs-btn.es-btn-modal-tooltip[class*=es-btn]:before {
  content: "";
  height: 100%;
  width: 1px;
  background-color: #dee2e6;
  position: absolute;
  right: 47px;
}

.es-review-hours-approve {
  /* margin: auto; */
  flex-grow: 1;
  max-width: none;
}

.es-reviewtable-col-actions button.btn.es-btn-border {
  flex-grow: 1;
  min-width: 70px;
}

button.btn.es-btn-border-grey {
  border-radius: 2px;
  border: 1px solid #868E96 !important;
  background: #FFF !important;
  color: #868E96 !important;
}

button.btn.es-btn-border-grey:hover {
  background-color: #868E96 !important;
  color: #fff !important;
}

.es-review-hours-approve {
  width: 100%;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2F9E44;
  font-family: Inter;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 2px;
  background: #EBFBEE;
  padding: 0px 5px;
}

.es-reviewtable-col-select-all .es-select-all-div .es-btn-border {
  padding: 0px 4px !important;
  height: 20px !important;
  font-size: 13px !important;
  border-radius: 4px 4px 0px 0px;
}

.es-reviewtable-col-select-all .es-select-all-div .form-group.form-check.es-input-check {
  margin: 0px;
  margin-right: 12px;
}

.es-reviewtable-col-actions-div .form-group.form-check.es-input-check.form-check-inline {
  margin-right: 12px !important;
}

.es-disabled-icon-review-hours {
  color: #DEE2E6 !important;
}

.es-reviewtable-col-select-all {
  background-color: #F8F9FA;
}

.es-select-all-div .dropdown.es-select-dropdown-approve .dropdown-menu {
  transform: translate(-1px, 23px) !important;
}

.es-reviewtable-col-actions .es-btn-border-secondary {
  min-width: 101px;
  border: 1px solid #868E96;
  color: #868E96;
  margin-left: 0 !important;
}

.es-reviewtable-col-actions .es-btn-border-secondary:hover {
  background-color: #868E96;
  color: #fff;
}

.es-reviewtable-col-actions .es-btn-border-secondary.disabled {
  border: 1px solid #868E96 !important;
  color: #868E96 !important;
  cursor: not-allowed !important;
  background-color: #fff !important;
  pointer-events: initial;
}

.dropdown.es-select-dropdown-approve button.btn-secondary.dropdown-toggle {
  background-color: #F7813D;
  border: #F7813D;
  font-size: 13px;
  padding: 4px 12px;
  line-height: 13px;
}

.es-select-dropdown-approve .dropdown-item:active,
.es-select-dropdown-approve .dropdown-item:hover {
  background-color: #F7813D;
  color: #fff;
}

.dropdown.es-select-dropdown-approve ul.dropdown-menu {
  border-radius: 0px 0px 2px 2px;
  background: #FFF;
  box-shadow: 2px 16px 19px 0px rgba(0, 0, 0, 0.09);
  border: 0px;
}

.es-reviewtable-collapsed-ul {
  background-color: #f5f5f5;
}

.es-reviewtable-col-hourly i.ri-arrow-right-s-fill[aria-expanded=true] {
  transition: 0.5s;
}

.es-reviewtable-col-hourly i.ri-arrow-right-s-fill[aria-expanded=true] {
  transform: rotate(90deg);
  display: inline-block;
  transition: 0.5s;
}

.es-review-input-hours-full input {
  width: 100% !important;
  max-width: 100% !important;
}

.es-hours-text {
  font-style: italic;
  margin-top: -16px;
}

.fs-12 {
  font-size: 12px !important;
}

.es-border-icon-btn.es-logs-btn.es-btn-modal-tooltip[class*=es-btn] {
  min-width: inherit;
  margin-left: 10px !important;
}

.es-reviewtable-col-actions {
  position: relative;
}

select.form-control:disabled {
  color: #AAB0B6;
  border-radius: 2px;
  border: 1px solid #DEE2E6;
  background-color: #E9ECEF;
}

.es-reviewtable-col-actions-div .form-check-input:checked[type=checkbox][disabled],
.es-reviewtable-col-select-all .form-check-input:checked[type=checkbox][disabled] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23757575' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e") !important;
  border-radius: 1px;
  border: 1px solid #CED4DA;
  background: #F1F3F5;
}

.es-reviewtable-col-actions-div .form-group.form-check.es-input-check {
  margin-top: 0px !important;
}

.es-border-icon-btn.es-btn-modal-tooltip.es-additional-hrs-btn-disabled {
  border-color: #DEE2E6 !important;
  cursor: not-allowed !important;
  pointer-events: initial !important;
}

.es-reviewtable-col-actions-div button.es-border-icon-btn.btn.es-logs-btn.es-btn-modal-tooltip.es-additional-hrs-btn-disabled + button.es-border-icon-btn.btn.es-logs-btn.es-btn-modal-tooltip.evt-add-additional-hrs-btn {
  display: none;
}

.es-reviewtable-body-tr td {
  background-color: #fff;
}

.es-reviewtable-body-tr.es-even-tr td {
  background-color: #FBFBFC;
}

.es-reviewtable-body-tr.es-row-expand td {
  background-color: #f1f3f5 !important;
}

.es-client-active {
  background-color: #EBF7FF;
}

.es-review-table .es-card-body {
  border: 0px !important;
  background-color: transparent !important;
}

.es-reviewtable-body-tr.es-row-expand .es-reviewtable-col-hourly,
.es-reviewtable-body-tr.es-row-expand .es-reviewtable-col-budget,
.es-reviewtable-body-tr.es-row-expand .es-reviewtable-head-col-billable,
.es-reviewtable-body-tr.es-row-expand td.es-reviewtable-col-billable,
.es-reviewtable-body-tr.es-row-expand td.es-reviewtable-col-invoiceable-edit,
.es-reviewtable-body-tr.es-row-expand td.es-reviewtable-col-rate,
.es-reviewtable-body-tr.es-row-expand td.es-reviewtable-col-total-amount {
  font-weight: 600;
}

.es-review-ul-table tbody tr.es-reviewtable-body-tr:hover td,
.es-review-ul-table tbody .es-reviewtable-collapsed-ul:hover td,
.es-review-ul-table tbody .es-review-hours-subSKU-wrapper:hover td {
  background: #EBF7FF;
}

.es-add-review-hours-note {
  position: relative;
  top: 40px;
  width: fit-content;
}
.es-add-review-hours-note .bg-pastel-red {
  background-color: #FFE9E9;
  color: #495057;
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
  width: fit-content;
}

.es-es-band-content-client-name {
  max-width: 200px;
}

.es-reviewtable-head {
  position: sticky;
  top: 0px;
  z-index: 10;
}

.es-review-ul-table {
  max-height: calc(100vh - 111px);
  position: relative;
}

.es-reviewtable-head-ul td[rowspan="2"] {
  height: 55px;
  vertical-align: top;
}

.es-reviewtable-head-col-billable-colspan {
  padding-bottom: 0px;
}

.es-reviewtable-head-ul td,
.es-reviewtable-body-tr td,
.es-review-hours-SKU-wrapper td {
  padding: 8px;
}

.es-reviewtable-head-ul .es-reviewtable-col-billable,
.es-reviewtable-head-ul .es-reviewtable-head-col-billable {
  padding-top: 0px;
}

.es-review-hours-SKU-wrapper td[colspan="9"],
.es-review-hours-SKU-wrapper td[colspan="8"],
.es-review-hours-SKU-wrapper td[colspan="4"] {
  padding: 0px;
}

.es-reviewtable-body-tr ~ .es-review-hours-SKU-wrapper {
  border-top: 1px solid #dee2e6;
}

.es-reviewtable-head-col-billable-colspan {
  text-align: center;
}

.es-reviewtable-head-ul .es-reviewtable-col-budget {
  background-color: #BFE3D8;
}

.es-reviewtable-head-ul .es-reviewtable-head-col-billable,
.es-reviewtable-head-ul .es-reviewtable-col-billable,
.es-reviewtable-head-col-billable-colspan {
  background-color: #FBE0E0;
}

.es-reviewtable-head-ul .es-reviewtable-col-total-amount,
.es-reviewtable-head-ul .es-reviewtable-col-rate,
.es-reviewtable-head-ul .es-reviewtable-col-invoiceable-edit {
  background-color: #E0E8BC;
}

.es-reviewtable-col-approve .es-btn-border {
  height: 28px !important;
  font-weight: 500;
  width: 69px;
  padding: 0px !important;
}

.es-reviewtable-col-actions .es-btn-modal-tooltip {
  width: 32px !important;
  height: 32px !important;
  max-width: 32px !important;
  min-width: 32px !important;
  padding: 0px !important;
  margin: 0px !important;
}

.es-reviewtable-col-actions .es-btn-modal-tooltip span i {
  font-size: 18px !important;
}

.es-reviewtable-col-actions .es-btn-modal-tooltip.es-additional-hrs-btn-disabled span i {
  color: #868E96 !important;
}

.es-reviewtable-col-actions-div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.es-reviewtable-col-approve {
  width: 88px;
  min-width: 88px;
}

.es-review-hours-subSKU-wrapper:hover .es-reviewtable-col-invoiceable i.ri-pencil-fill {
  font-size: 13px;
  transition: 0.5s;
  display: inline-block;
}

.es-reviewtable-head-col-billable-colspan {
  width: 190px;
}

.es-reviewtable-col-hourly {
  min-width: 300px;
  width: 300px;
  max-width: 300px;
}

.es-review-hours-SKU-wrapper .es-reviewtable-col-hourly {
  min-width: 280px;
  width: 280px;
  max-width: 280px;
}

.es-hourly-text {
  max-width: 215px;
}

.es-es-band-content-client-name {
  max-width: 200px;
}

.es-review-basic-table .es-reviewtable-head th {
  padding: 8px 16px;
  font-weight: 500;
}

.es-review-basic-table tbody.es-reviewtable-body {
  border: 1px solid #DEE2E6;
  border-top: 0px;
}

.es-review-basic-table tbody.es-reviewtable-body td {
  border-right: 1px solid #DEE2E6;
  border-bottom: 1px solid #DEE2E6;
  padding: 16px;
}

.es-review-basic-table .es-reviewtable-body .es-even-tr td {
  background-color: #FBFBFC;
}

.es-review-basic-table .es-reviewtable-body tr:hover td {
  background-color: #EBF7FF;
}

.es-finOps-qty {
  max-width: 350px;
  width: fit-content;
}

.es-review-basic-table tbody.es-reviewtable-body td:last-child {
  border-right: 0px solid #DEE2E6;
}

.es-review-tables .es-review-basic-table .es-reviewtable-head {
  border-left: 1px solid #dee2e6;
  border-right: 1px solid #dee2e6;
  border-top: 1px solid #dee2e6;
}

.es-basic-tech-stack-fixed-td {
  max-width: 460px;
  width: 300px;
}

.es-basic-tech-stack-fixed-amount {
  width: 150px;
  max-width: 200px;
}

.es-empty-td-SKU.es-empty-td-SKU-last {
  width: 8px;
  padding: 0px;
}

.es-reviewtable-collapsed-ul td {
  background-color: #fff;
  border-right: 1px solid #dee2e6;
}

.es-empty-td-SKU {
  width: 21px;
  border-right: 0px !important;
  border-left: 0px !important;
}

.es-reviewtable-collapsed-ul td.es-reviewtable-col-hourly {
  color: #212529;
  font-weight: 600;
}

.es-review-hours-SKU-wrapper.show {
  background-color: #F1F3F5;
}

.es-review-hours-subSKU-wrapper td,
.es-reviewtable-body-tr td {
  border-top: 1px solid #DEE2E6;
  border-left: 1px solid #DEE2E6;
}

.es-review-hours-subSKU-wrapper td {
  background-color: #fff;
}

.es-reviewtable-col-hourly {
  border-left: 0px !important;
}

.es-hourly-profile:before {
  content: " ";
  width: 4px;
  height: 4px;
  border-radius: 5px;
  position: absolute;
  left: 6px;
  background-color: #868E96;
  top: 7px;
}

.es-hourly-profile {
  color: #868E96;
  position: relative;
  padding-left: 20px;
}

.es-updated-td-span {
  width: 20px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: 0px;
  top: 0px;
  display: none;
}

.es-review-hours-subSKU-wrapper td.es-reviewtable-col-hourly {
  position: relative;
  padding-left: 35px;
  color: #212529;
}

.es-review-hours-SKU-wrapper.show + tr.es-reviewtable-body-tr,
.es-review-hours-SKU-wrapper.collapsing + tr.es-reviewtable-body-tr {
  border-top: 10px solid #f1f3f5 !important;
}

.es-updated-td-span.es-edited-hrs-span {
  background-color: #DEE2E6;
}

.es-updated-td-span.es-new-hrs-span {
  background-color: #BDE6EC;
}

.bg-beige {
  background-color: #FBF9EE;
}

.bg-dark-brown {
  background-color: #EAE4DD;
}

.es-fixed-total-tr {
  font-weight: 500;
}

.es-reviewtable-col-budget,
.es-reviewtable-head-col-billable-colspan,
.es-reviewtable-col-invoiceable-edit,
.es-reviewtable-col-rate,
.es-reviewtable-col-total-amount,
.es-reviewtable-head-col-billable,
.es-reviewtable-col-billable {
  text-align: center !important;
}

.es-fixed-total-tr td {
  background-color: #F1F3F5 !important;
}

.es-div-invoiceable-edit i.ri-information-line {
  position: absolute;
  right: 15px;
}

.es-combine-input-Invoiceable {
  display: flex;
  width: 100%;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  appearance: none;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  padding: 0.3rem 0.5rem;
  border-radius: 2px;
  align-items: center;
  height: 32px !important;
  position: relative;
}

.es-combine-input-Invoiceable input {
  border: 0px;
  outline: none;
  width: 26px !important;
  padding: 0px;
  color: #495057;
}

.es-combine-input-Invoiceable input::placeholder {
  color: #868E96;
  text-align: center;
}

.es-invoiceable-hr-clock {
  position: absolute;
  right: 8px;
  top: 6px;
}

.es-Invoiceable-hrs-colon {
  padding: 0px 4px;
}

.es-review-hours-resourcepool {
  min-width: 103px;
}

.es-reviewHours-serviceline-table {
  width: 100%;
}

.es-designation-dot {
  height: 4px;
  border-radius: 50px;
  width: 4px;
  background-color: #868E96;
  display: inline-grid;
  margin-right: 10px;
  margin-bottom: 2px;
}

.es-hourly-text-designation {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  margin-left: 10px;
  min-width: 70px;
}

.es-hourly-truncate-div .es-hourly-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  margin-left: 10px;
  min-width: 60px;
  flex-shrink: 0;
}

.es-hourly-truncate-div.es-reviewhours-user-with-designation .es-hourly-text {
  max-width: calc(100% - 110px);
}

.es-review-hours-SKU-wrapper.show + tr.es-reviewtable-body-tr.es-row-expand td:before,
.es-review-hours-SKU-wrapper.collapsing + tr.es-reviewtable-body-tr.es-row-expand td:before {
  content: " ";
  width: 100%;
  position: absolute;
  left: 0px;
  height: 3px;
  top: 0px;
  background-color: #fff;
}

.es-review-hours-SKU-wrapper.show + tr.es-reviewtable-body-tr td {
  position: relative;
}

.es-reviewtable .ri-arrow-right-s-fill {
  font-size: 13px !important;
  font-weight: 700;
}

.es-review-td-span-bg {
  padding: 4px;
}

.es-reviewtable-col-budget .es-review-td-span-bg {
  background-color: #BFE3D8;
}

.es-reviewtable-col-billable .es-review-td-span-bg {
  background-color: #FBE0E0;
}

.es-review-hours-head-collapse-fixed span.es-review-td-span-bg {
  background-color: transparent !important;
}

.es-bg-grey {
  background: #F1F3F5;
}

.es-edit-task-table p.fw-bold {
  font-weight: 500 !important;
}

.es-edit-task-table p {
  margin: 0px;
}

.es-edit-task-table p {
  margin: 0px;
  padding: 6px 0px;
}

.collapsing {
  transition: 0.2s ease;
}

.es-full-height-wrapper .es-card {
  box-shadow: 0 1px 31px rgba(56, 65, 74, 0.1);
  padding: 50px 70px;
}

.es-full-height-wrapper {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.es-full-height-wrapper .es-card-title h4, .es-full-height-wrapper .es-card-title .h4 {
  font-size: 20px;
}

.es-full-height-wrapper .es-card-body {
  border: 1px solid #ced4da !important;
  border-radius: 4px;
  background-color: #f8f9fa !important;
}

.es-import-export-btn-grp .es-border-icon-btn {
  height: 50px;
  width: 50px;
}
.es-import-export-btn-grp .es-border-icon-btn i {
  font-size: 20px !important;
}

.es-netsuite-icon {
  height: 20px;
}

.es-latest-invoices-card-widget table.table.table-striped {
  table-layout: fixed;
}

.es-latest-invoices-card-widget th {
  padding: 10px 15px;
  text-align: left;
}

.es-latest-invoices-card-widget tbody td {
  padding: 10px 15px !important;
  vertical-align: middle;
  line-height: 20px;
}

.es-invoice-no-th-card {
  text-align: center !important;
}

.es-invoice-no-th-card span.d-flex {
  justify-content: center;
}

.es-invoice-no-th-card-span {
  text-align: left;
  width: 76px;
  margin: auto;
  display: block;
}

/* Input on focus css */
.es-datatable .table-filters .dataTables_filter label input.form-control:focus,
.es-datatable .es-datatable-filter select.form-control:focus,
.form-group .form-control:focus,
.form-group .form-select:focus,
span.select2.select2-container--focus,
.es-notes-tab .es-note-input .tagify span.tagify__input:focus,
.es-file-section-search input:focus,
.top-header .app-search .form-control:focus,
.activity-dropdown-filter .select2.select2-container.select2-container--focus,
.form-select:focus {
  outline: 2px solid #757575 !important;
}

span.select2.select2-container--open {
  box-shadow: none !important;
}

.es-datatable .dataTables_wrapper.no-footer {
  padding-top: 2px;
}

.is_focused,
.form-group .form-control.evt-datepicker:focus,
.form-group .form-control.evt-datepicker:focus-within,
.form-group .form-control.evt-datepicker:active,
.form-group .form-control.evt-datepicker:focus-visible,
.es-add-note .es-note-textarea:focus,
table.evt-vertical-data select.form-control:focus,
.es-activity-pipeline-filter select:focus {
  outline: 2px solid #757575 !important;
}

div#template-filter select.form-control:focus {
  box-shadow: none !important;
  outline: 2px solid #757575 !important;
}

.select2-container span.select2-dropdown span.select2-search.select2-search--dropdown input.select2-search__field:focus,
.datepicker.datepicker-dropdown,
div.dataTables_wrapper div.dataTables_length select:focus {
  outline: 2px solid #757575 !important;
}

.datepicker-dropdown.datepicker-orient-top:before {
  bottom: -10px !important;
  border-top: 10px solid #757575 !important;
}

.datepicker-dropdown.datepicker-orient-bottom:before {
  top: -9px !important;
  border-bottom-color: #757575 !important;
}

.input-group.is_focused .input-group-text + .form-control:focus {
  outline: none !important;
}

.datepicker table tr td.active.active {
  background: #757575 !important;
  border: 1px solid #757575 !important;
  color: #ffffff !important;
}

.form-material .datepickerInputField.datepicker:focus {
  background: none !important;
  border-bottom: 1px solid #e8e8e8 !important;
}

.form-group.form-material .form-control:focus {
  border-bottom: 2px solid #757575 !important;
  background: none !important;
}

.form-group.es-input-text .input-group:has(.input-group-text + .form-control:focus) span.input-group-text {
  border-color: #757575;
  border-width: 2px;
  border-right-color: #ced4da;
  border-right-width: 1px;
}

.form-group.es-input-text .input-group:has(.input-group-text + .form-control:focus) .form-control {
  border-color: #757575;
  border-width: 2px;
  border-left-color: #ced4da !important;
  border-left-width: 1px !important;
  outline: none !important;
  box-shadow: none;
  transition: 0s !important;
}

.datepicker-dropdown.datepicker-orient-top:after {
  bottom: -5px !important;
}

.datepicker-dropdown.datepicker-orient-bottom:after {
  top: -5px !important;
}

.form-material:has(.form-control.datepicker:focus) .form-control.datepicker,
.form-material:has(.form-control.datepicker:focus) .input-group-text,
.form-amaterial:has(.form-control.datepicker:focus) .input-group-text,
.form-amaterial:has(.form-control.datepicker:focus) .input-group-text {
  border-bottom: 2px solid #757575 !important;
}

.calendar-card-content .form-control:focus {
  outline: 2px solid #757575 !important;
}

.select2-container--default.select2-container--open,
.select2-container--default.select2-container--focus {
  border-radius: 2%;
}

.select2-container--default.select2-container--focus .select2-selection--multiple,
.select2-container--default.select2-container--open .select2-selection--multiple {
  border: 0px !important;
}

/* Input on focus css */
.es-form-builder-file-upload {
  line-height: 22px !important;
}

.es-custom-btns-form-builder-col {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 14px !important;
}

.es-custom-add-btn-form-builder {
  padding: 0px !important;
  height: auto !important;
  line-height: initial !important;
  min-width: initial;
}

.es-form-builder-conditional-fields:has(.es-form-builder-conditional-field-applied a.evt-add-field-lookup-rule:not(.d-none)) .es-form-builder-conditional-field-2,
.es-form-builder-conditional-fields:has(.es-form-builder-conditional-field-applied a.evt-add-field-lookup-rule:not(.d-none)) .es-form-builder-conditional-field-1 {
  width: calc(49% - 7.5px);
}

.es-form-builder-conditional-fields:has(.es-form-builder-conditional-field-applied a.evt-add-field-lookup-rule:not(.d-none)) .es-form-builder-conditional-field-applied {
  width: 15px;
}

.es-dependency-field-lookup {
  background-color: #f3faff;
  padding: 12px 0px 0px;
  border-radius: 4px;
  margin-bottom: 8px !important;
}

.evt-download-file.es-file-title-form-builder {
  cursor: pointer;
}

.es-file-title-form-builder {
  cursor: auto;
}

.es-tabs.es-activity-3rd-level-tab .nav-tabs {
  border: 0px;
  justify-content: end;
}

.es-configurator-activity .es-card-body.px-0 {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.es-tabs .es-card-header.es-configurator-primary-tabs .nav-tabs li button {
  padding: 12px 15px !important;
}

.es-card-header.es-configurator-primary-tabs {
  padding: 19px 15px 0px !important;
  height: auto;
}

.main-content.es-configurator-activity .es-card.es-tabs .es-card-body {
  padding: 15px !important;
}

div#nav-Configurator {
  padding-top: 10px;
}

div#nav-Configurator .es-tabs li.nav-item button.nav-link {
  padding: 11px 12px !important;
}

.main-content.es-configurator-activity .es-card.es-tabs .es-card-body.px-0 {
  padding: 0px !important;
  padding: 0px !important;
}

.es-view-more {
  color: #3366cc;
  text-decoration: none !important;
  cursor: pointer;
}

.es-SKU-setup-action {
  max-width: 100px;
  display: block;
  margin-right: 16px;
}

.es-SKU-setup-pills {
  display: flex;
  padding: 2px 4px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 2px;
}

.es-bg-success.es-SKU-setup-pills {
  background: #D4EDDA;
  color: #396833;
}

.es-bg-danger.es-SKU-setup-pills {
  background: #FFE3E3;
  color: #C92A2A;
}

.es-bg-grey.es-SKU-setup-pills {
  background-color: #DEDEDE;
  color: #6B6E70;
}

.es-bullet {
  height: 5px;
  width: 5px;
  display: inline-block;
  border-radius: 5px;
  margin-right: 12px;
}

.es-SKU-setup-time .es-bullet {
  background-color: #495057;
}

.es-SKU-setup-time,
.es-SKU-setup-IP {
  align-items: center;
  display: flex;
}

.es-SKU-setup-IP .es-bullet {
  background-color: #868E96;
}

.es-flyout-header {
  border-bottom: 1px solid #DEE2E6;
  background: #F1F1F1;
  height: 44px;
  padding: 12px 16px;
}

.es-flyout-popup.es-configurator-logs-popup {
  top: 0px;
  height: 100vh;
  width: 1000px;
  right: -1200px;
  max-width: 95%;
}

.es-flyout-title {
  margin: 0px;
  font-size: 16px;
  font-weight: 600;
}

.es-activity-sku-action {
  width: 140px;
  max-width: 140px;
}

.es-flyout-card-body.es-configurator-logs-popup-body {
  max-height: calc(100vh - 44px);
  overflow-y: scroll;
  overflow-x: hidden;
}

.text-grey.es-SKU-setup-author,
.es-SKU-setup-time,
.es-SKU-setup-IP.text-grey,
.es-SKU-setup-action {
  flex-shrink: 0;
}

.es-SKU-setup-title {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: block;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  max-width: 500px;
}

.es-flyout-card-body.es-configurator-logs-popup-body::-webkit-scrollbar {
  width: 8px;
  border-radius: 8px;
}

.es-activity .activity_content i.ri-arrow-right-double-line {
  color: #495057;
  font-size: 16px;
}

body.flyout-opened .es-popout.v2.evt-company-card {
  z-index: 9000002 !important;
}

.es-configurator-logs-popup .es-SKU-setup-action {
  max-width: 110px;
}

.es-configurator-logs-popup .es-SKU-setup-sku_code {
  margin-right: 0.25rem;
}

.main-content.es-configurator-activity .nav-tabs li > button > a {
  color: #343A40 !important;
}

.main-content.es-configurator-activity .nav-tabs li > button > a {
  color: #343A40 !important;
}

.es-configurator-logs-popup .es-SKU-setup-sku_code:empty {
  margin-right: 0px;
}

.main-content.es-configurator-activity .nav-tabs li > button > a {
  color: #495057 !important;
}

.main-content.es-configurator-activity .nav-tabs li > button.nav-link.active > a,
.main-content.es-configurator-activity .nav-tabs li > button:hover > a {
  color: #f7813d !important;
}

.main-content.es-configurator-activity {
  margin-top: 1px;
  padding-right: 9px;
}

.es-card-header.es-configurator-primary-tabs ul#myTab li.nav-item {
  margin-right: 5px;
}

.main-content.es-configurator-activity .es-card.es-tabs .es-card-body li.nav-item {
  margin: 0px;
  border-right: 1px solid transparent;
  border-left: 1px solid transparent;
}

div#nav-Configurator .es-tabs .es-tabs.es-activity-3rd-level-tab li.nav-item button {
  padding: 7px 12px !important;
}

.es-tabs.es-activity-3rd-level-tab {
  padding-top: 8px;
}

.es-configurator-activity .es-activity-SKU.Exported span.es-SKU-setup-action,
.es-configurator-activity .es-activity-SKU.Imported span.es-SKU-setup-action {
  max-width: 110px;
}

.main-content.es-configurator-activity .es-notes-tab .es-note-timeline ul.es-activity li {
  padding-bottom: 12px;
}

/* Track */
.es-flyout-card-body.es-configurator-logs-popup-body::-webkit-scrollbar-track {
  background: #E9ECEF;
}

/* Handle */
.es-flyout-card-body.es-configurator-logs-popup-body::-webkit-scrollbar-thumb {
  background: #868E96;
}

.es-imported-sheet-title,
.es-error-sheet-title {
  font-weight: 600;
  font-size: 14px;
}

.es-imported-error-sheet {
  padding: 0px 24px 20px;
}

.es-imported-error-sheet-inner {
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.text-link {
  color: #0a58ca;
  cursor: pointer;
}

.es-imported-sheet-file i {
  font-size: 16px;
  line-height: 13px;
}

@media (min-width: 1451px) and (max-width: 1600px) {
  .main-content.es-configurator-activity .es-card.es-tabs .es-card-body .nav-tabs button.nav-link a {
    font-size: 12px;
  }
  div#nav-Configurator .es-tabs li.nav-item button.nav-link {
    padding: 10px 12px !important;
  }
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .main-content.es-configurator-activity .es-card.es-tabs .es-card-body .nav-tabs button.nav-link a {
    font-size: 11px !important;
  }
  div#nav-Configurator .es-tabs li.nav-item button.nav-link {
    padding: 9px 12px !important;
  }
}
.fs-24 {
  font-size: 24px;
}

.fs-20 {
  font-size: 20px;
}

.fs-13 {
  font-size: 13px;
}

.fs-11 {
  font-size: 11px;
}

.fs-18 {
  font-size: 18px;
}

.fs-14 {
  font-size: 14px;
}

.fs-16 {
  font-size: 16px;
}

.es-blue-gradient {
  background: linear-gradient(90deg, #E7F5FF 0%, #FFF 100%);
}

.es-yellow-gradient {
  background: linear-gradient(90deg, #FFF9DB 0%, #FFF 100%);
}

.es-table-blue {
  background-color: #e6edf9;
}

.es-table-green {
  background-color: #bfe3d8;
}

.es-table-yellow {
  background-color: #e0e8bc;
}

.es-table-pink {
  background-color: #fbe0e0;
}

.es-btn-primary-solid {
  border-radius: 2px;
  border: 1px solid #F7813D;
  display: inline-flex;
  padding: 6px 8px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: 32px !important;
  background: #F7813D;
  color: #fff;
}

.es-btn-primary-solid:hover {
  color: #F7813D;
  background: #FFF;
  border: 1px solid #F7813D;
}

.es-btn-secondary-solid {
  border-radius: 2px;
  border: 1px solid #ced4da;
  display: inline-flex;
  padding: 6px 8px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: 32px !important;
  background: #fff;
  color: #495057;
}

.es-btn-secondary-solid:hover {
  color: #495057;
  background: #ced4da;
  border: 1px solid #ced4da;
}

.es-efs-link-loader {
  height: 48px;
}

.es-efs-generate-link-second-step.text-center {
  padding-bottom: 32px;
}

.es-efs-generate-link-text {
  max-width: calc(100% - 32px);
  border-radius: 2px;
  background: #F8F9FA;
  display: flex;
  padding: 8px;
  justify-content: center;
  align-items: center;
}

.es-efs-generate-link-icon i.ri-file-copy-line {
  color: #868E96;
  cursor: pointer;
  font-size: 18px;
}

.es-efs-generate-link-icon {
  display: flex;
  padding: 4px;
  align-items: center;
  border-radius: 2px;
  background: #EBEFF7;
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35.5px;
}

.es-efs-generate-link-icon:has(i.ri-file-copy-line:hover) {
  background-color: #0A58CA !important;
}

.es-efs-link-toaster-text {
  border-radius: 2px;
  background: #04C89D;
  color: #fff;
  height: 36px;
}

.es-efs-link-toaster-text i {
  color: #fff;
  font-size: 16px;
  line-height: 15px;
}

.es-efs-generate-link-icon i.ri-file-copy-line:hover {
  color: #fff !important;
}

.es-loader-file-storage-img {
  height: 28px;
}

.es-loader-file-storage {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-check-input:checked[type=radio] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23757575'/%3e%3c/svg%3e");
  background-size: 120%;
}

.form-check-input:checked[type=radio] {
  background-color: #ffffff;
  border-color: #757575;
  border: 2px solid #757575;
}

.es-loader-file-storage-text {
  border-radius: 4px;
  background: linear-gradient(90deg, #FFF9DB 0%, #FFF 100%);
  padding: 4px 8px;
  line-height: normal;
}

.es-disabled input.form-check-input {
  background-color: #F1F3F5;
  border: 1px solid #CED4DA;
  pointer-events: none;
}

.es-disabled .form-group.form-check {
  cursor: not-allowed;
}

.select2-container.select2-container--default .select2-results .select2-results__options .select2-results__option {
  text-overflow: ellipsis;
  overflow: hidden;
  word-wrap: break-word;
}

.es-disabled-toggle-switch label {
  color: #b4b7ba;
}

.info-card-content.client-team-budget-widget-content {
  padding: 10px 15px;
}
.info-card-content.client-team-budget-widget-content .nav-item button.nav-link,
.info-card-content.client-team-budget-widget-content .nav-item button.nav-link.active,
.info-card-content.client-team-budget-widget-content .nav-item button.nav-link:hover {
  background-color: #f2f2f2 !important;
}
.info-card-content.client-team-budget-widget-content .nav-item.es-billable-service button.nav-link,
.info-card-content.client-team-budget-widget-content .nav-item.es-billable-service button.nav-link.active,
.info-card-content.client-team-budget-widget-content .nav-item.es-billable-service button.nav-link:hover {
  background-color: #dbeef4 !important;
}

.es-team-budget-user-county {
  width: 16px;
  display: none;
}

.es-team-budget-user-avatar {
  height: 30px;
  width: 30px;
  max-height: 30px;
  max-width: 30px;
  border-radius: 100%;
  border: 1px solid #DEE2E6;
}

.es-team-budget-user-active {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  background-color: #008000;
  display: block;
  border-radius: 50%;
  position: absolute;
  right: 0px;
  bottom: 0px;
}

.es-team-budget-user-inactive {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  background-color: #a82700;
  display: block;
  border-radius: 50%;
  position: absolute;
  right: 0px;
  bottom: 0px;
}

.es-team-budget-user {
  gap: 12px;
}

.es-team-budget-user-name {
  color: #0A58CA;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
}

.es-team-budget-user-rate {
  color: #212529;
  font-family: Inter;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.es-team-budget-widget-table tbody {
  border-top: 0px !important;
}

.es-team-budget-widget-table th {
  color: #212529;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding-left: 2px;
  padding-right: 2px;
  border-bottom: 1px solid #DEE2E6;
}

.es-bg-lightgrey4 {
  background-color: #F8F9FA !important;
}

.es-bg-lightgrey3 {
  background-color: #DEE2E6 !important;
}

.es-bg-lightgrey2 {
  background-color: #F3F3F3 !important;
}

.es-bg-lightgrey {
  background-color: #FBFBFB !important;
}

.es-fixed-td {
  background-color: #EBEEF0 !important;
}

.es-hourly-td {
  background-color: #F2F5F8 !important;
}

.es-widget-date {
  color: #868E96;
  font-family: Inter;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-left: 4px;
}

.es-table-subheader th {
  color: #868E96;
  text-align: center;
  font-family: Inter;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-top: 0px;
}

.es-table-header.text-center .es-bg-lightgrey3 {
  padding-bottom: 2px;
  width: 75px;
  border-bottom: 0px;
}

.es-table-header.text-center .es-bg-lightgrey4 {
  width: calc(100% - 376px) !important;
  padding-left: 15px;
}

.es-team-budget-widget-table table {
  table-layout: fixed;
  margin-bottom: 0px;
}

.es-team-budget-widget-table tbody td {
  padding: 12px !important;
}

.es-team-budget-tab-wrapper .es-card-body {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.es-team-budget-widget-table table.table {
  min-width: 470px;
}

.es-team-budget-widget-table {
  overflow-x: auto;
  max-height: 360px;
}

.es-team-budget-user-details {
  max-width: calc(100% - 10px);
  display: block;
}

@media (max-width: 992px) {
  .es-card-section .es-card-body .es-widget-wrap .es-summary-card .es-action-cards .es-team-budget-widget-table table tbody.text-center.evt-team-budget-service-users-details {
    display: table-row-group !important;
  }
  .es-card-section .es-card-body .es-widget-wrap .es-summary-card .es-action-cards .es-team-budget-widget-table table tbody.text-center.evt-team-budget-service-users-details tr {
    display: table-row !important;
  }
  .es-card-section .es-card-body .es-widget-wrap .es-summary-card .es-action-cards .es-team-budget-widget-table table tbody.text-center.evt-team-budget-service-users-details tr td {
    display: table-cell !important;
  }
}
/* DAS timer tooltip css start */
.es-das-timer-tooltip-content {
  position: absolute;
  bottom: -10px;
  border-radius: 4px;
  background: #FFF;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.24);
  padding: 12px;
  transform: translateY(100%) translateX(-20px);
  display: none;
  z-index: 9;
}

span.es-das-timer-tooltip-icon:has(input[type=checkbox]:checked) + .es-das-timer-tooltip-content {
  display: block;
}

.es-das-timer-tooltip-content:before {
  content: "";
  border-style: solid;
  border-width: 10px;
  position: absolute;
  left: 17px;
  /* transform: translateY(-50%); */
  border-color: transparent transparent #fff transparent;
  filter: drop-shadow(-1px -4px 3px rgba(0, 0, 0, 0.17));
  max-width: 11px;
  max-height: 10px;
  top: -19px;
}

.es-das-timer-tooltip-first {
  width: 50px;
  font-weight: 600;
}

.es-das-timer-tooltip-budget {
  width: 85px;
  text-align: right;
}

.es-das-timer-tooltip-actual {
  width: 80px;
  text-align: right;
  justify-content: end;
  display: flex;
}

.es-das-timer-tooltip-difference {
  width: 105px;
  text-align: right;
  justify-content: end;
  display: flex;
}

.es-das-timer-tooltip-header .es-das-timer-tooltip-budget,
.es-das-timer-tooltip-header .es-das-timer-tooltip-actual,
.es-das-timer-tooltip-header .es-das-timer-tooltip-difference {
  font-weight: 600;
}

.es-das-timer-tooltip {
  position: relative;
}

.es-das-timer-tooltip .gap-3 {
  gap: 27px !important;
}

.es-dastimer-tooltip-wrapper {
  display: flex;
}

.es-das-timer-tooltip-icon input[type=checkbox] {
  position: absolute;
  top: 3px;
  opacity: 0;
  cursor: pointer;
}

.es-fixed-hours-warning-div .form-label,
.es-das-timer-tooltip-warning {
  max-width: 390px;
  color: #FF0018 !important;
  font-style: italic;
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 12px;
}

.es-header-timer-tooltip .es-das-timer-tooltip-content .spinner-border {
  width: 1rem;
  height: 1rem;
}

.es-das-timer-tooltip:not(:has(.es-das-timer-tooltip-content.d-none)) i.ri-information-line {
  color: #f7813e;
}

.es-fixed-hours-warning-div .form-label {
  max-width: 410px;
  font-size: 12px;
}

.es-das-timer-tooltip-icon label.toggle-button i.ri-information-line {
  font-size: 16px;
  line-height: 16px;
}

/* DAS timer tooltip css end */
/* DAS timer tooltip css start */
.es-das-timer-tooltip-content {
  position: absolute;
  bottom: -10px;
  border-radius: 4px;
  background: #FFF;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.24);
  padding: 12px;
  transform: translateY(100%) translateX(-20px);
  display: none;
  z-index: 9;
}

span.es-das-timer-tooltip-icon:has(input[type=checkbox]:checked) + .es-das-timer-tooltip-content {
  display: block;
}

.es-das-timer-tooltip-content:before {
  content: "";
  border-style: solid;
  border-width: 10px;
  position: absolute;
  left: 17px;
  /* transform: translateY(-50%); */
  border-color: transparent transparent #fff transparent;
  filter: drop-shadow(-1px -4px 3px rgba(0, 0, 0, 0.17));
  max-width: 11px;
  max-height: 10px;
  top: -19px;
}

.es-das-timer-tooltip-first {
  width: 50px;
  font-weight: 600;
}

.es-das-timer-tooltip-budget {
  width: 85px;
  text-align: right;
}

.es-das-timer-tooltip-hourly {
  width: 74px;
  text-align: right;
}

.es-das-timer-tooltip-actual {
  width: 80px;
  text-align: right;
  justify-content: end;
  display: flex;
}

.es-das-timer-tooltip-difference {
  width: 105px;
  text-align: right;
  justify-content: end;
  display: flex;
}

.es-das-timer-tooltip-header .es-das-timer-tooltip-budget,
.es-das-timer-tooltip-header .es-das-timer-tooltip-actual,
.es-das-timer-tooltip-header .es-das-timer-tooltip-difference,
.es-das-timer-tooltip-header .es-das-timer-tooltip-hourly {
  font-weight: 600;
}

.es-das-timer-tooltip {
  position: relative;
}

.es-das-timer-tooltip .gap-3 {
  gap: 15px !important;
}

.es-dastimer-tooltip-wrapper {
  display: flex;
}

.es-das-timer-tooltip-icon input[type=checkbox] {
  position: absolute;
  top: 3px;
  opacity: 0;
  cursor: pointer;
}

.es-fixed-hours-warning-div .form-label,
.es-das-timer-tooltip-warning {
  max-width: 500px;
  color: #FF0018 !important;
  font-style: italic;
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 12px;
}

.es-header-timer-tooltip .es-das-timer-tooltip-content .spinner-border {
  width: 1rem;
  height: 1rem;
}

.es-das-timer-tooltip:not(:has(.es-das-timer-tooltip-content.d-none)) i.ri-information-line {
  color: #f7813e;
}

.es-fixed-hours-warning-div .form-label {
  max-width: 410px;
  font-size: 12px;
}

.es-das-timer-tooltip-icon label.toggle-button i.ri-information-line {
  font-size: 16px;
  line-height: 16px;
}

/* DAS timer tooltip css end */
.es-team-assigned-tabs .es-card-tabLinks li.nav-item.es-new-assigned-tab-active:after {
  height: 8px;
  width: 8px;
  content: " ";
  background-color: #f45d48;
  position: absolute;
  border-radius: 8px;
  top: -3px;
  right: -3px;
}

.es-team-assigned-tabs .es-card-tabLinks li.nav-item {
  position: relative;
}

.es-team-assigned-tabs ul .es-team-assigned-card-single {
  position: relative;
  z-index: 2;
}

.es-new-resource-added {
  position: absolute;
  bottom: 4px;
  transform: translateY(100%);
  background-color: rgba(255, 255, 255, 0);
  width: 100%;
  left: 0px;
  color: #fff;
  text-align: left;
  padding: 0px 4px;
  line-height: 20px;
  border-bottom-left-radius: 4px;
  border: 0px solid #F1F3F5;
  background: linear-gradient(90deg, #F7813D 0%, #FEE2D1 100%);
  content: "";
  border-bottom-right-radius: 4px;
}

.es-team-assigned-tabs ul .es-team-assigned-card-single:before {
  content: "";
  left: 0px;
  bottom: 2px;
  width: 100%;
  height: 3px;
  position: absolute;
  background-color: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.06);
  border: 0px solid #f5f5f5;
  border-radius: 6px;
  z-index: 1;
}

.es-team-hierarchy li.team-hierarchy-member.es-team-assigned-card-single {
  margin-bottom: 28px;
}

.es-team-assign .es-team-assigned-card-single .es-team-box-ribbon::after,
.es-team-assign .es-team-assigned-card-single .es-team-box-ribbon::before {
  border: 0px !important;
}

.es-team-hierarchy > *:last-child::after {
  opacity: 0;
}

.es-team-assign li .es-sub-team.es-new-assigned-team-member {
  background-color: #f7813d;
  border: 1px solid #f7813d;
  color: #fff;
}

.es-team-assign li .es-sub-team.es-new-assigned-team-member i {
  color: #fff;
}

.es-onboardingList-progress {
  display: flex;
  align-items: center;
  background: #F8F9FA;
  padding: 6px 12px;
  gap: 12px;
}

.es-onboardingList-progress .progress {
  width: 152px;
  height: 12px;
}

.es-onboardingList-progress-label {
  color: #868E96;
  font-size: 13px;
}

.es-onboardingList-progress-label-count {
  color: #495057;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
}

.es-onboardingList-progress .progress .progress-bar {
  background-color: #2BBB65 !important;
}

.es-onboardingList .select2.select2-container.select2-container--default {
  min-width: 250px;
  max-width: 250px;
}

button.btn.es-btn-border-icon {
  border-radius: 1px;
  border: 1px solid rgba(173, 181, 189, 0.68);
  background: #FFF;
  width: 30px;
  flex-shrink: 0;
  min-width: initial;
  display: flex;
  align-items: center;
  padding: 0px !important;
  justify-content: center;
}

button.btn.es-btn-border-icon:hover {
  border: 1px solid rgba(173, 181, 189, 0.68);
  background: rgba(173, 181, 189, 0.68);
}

button.btn.es-btn-border-icon:hover i {
  color: #fff !important;
}

.es-onboardingList .es-action-span i {
  font-size: 16px !important;
  line-height: 16px;
}

a.es-text-link-orange,
a.es-text-link-orange i {
  color: #f7813d !important;
}

.es-onboardingList td.es-status-td .select2.select2-container.select2-container--default:has(.select2-selection__rendered[title=Pending]) span.select2-selection.select2-selection--single {
  border-color: #FCCDB1 !important;
  background-color: #FCCDB1 !important;
}

.es-onboardingList td.es-status-td .select2.select2-container.select2-container--default:has(.select2-selection__rendered[title=Submitted]) span.select2-selection.select2-selection--single {
  border-color: #D3F9D8 !important;
  background-color: #D3F9D8 !important;
}

.es-onboardingList td.es-status-td .select2.select2-container.select2-container--default:has(.select2-selection__rendered[title="Under Review"]) span.select2-selection.select2-selection--single {
  border-color: #FFDEEB !important;
  background-color: #FFDEEB !important;
}

.es-onboardingList td.es-status-td .select2.select2-container.select2-container--default:has(.select2-selection__rendered[title=Incomplete]) span.select2-selection.select2-selection--single {
  border-color: #fff0a3 !important;
  background-color: #fff0a3 !important;
}

.es-onboardingList td.es-status-td .select2.select2-container.select2-container--default:has(.select2-selection__rendered[title=Completed]) span.select2-selection.select2-selection--single {
  border-color: #51CF66 !important;
  background-color: #51CF66 !important;
}

.es-onboardingList td.es-status-td .select2.select2-container.select2-container--default {
  min-width: 110px;
}

.es-client-doc-div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.es-client-doc-div .es-action-div {
  opacity: 0;
}

.es-onboardingList table tbody tr:hover .es-client-doc-div .es-action-div {
  opacity: 1;
  transition: opacity 0.3s ease;
}

table.dataTable#example-datatable tbody tr:hover > * {
  box-shadow: inset 0 0 0 9999px #EBF7FF !important;
}

.es-comments-td .es-comments-span sup {
  width: auto;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #f7813d;
  border-radius: 50%;
  color: #fff;
  font-size: 10px;
  left: -5px;
  top: -10px;
  padding: 3px;
  min-width: 16px;
}

.es-action-span.es-text-link-grey.disabled i {
  cursor: not-allowed;
  pointer-events: initial;
}

.es-instruction-span {
  display: block;
  max-width: 140px;
  cursor: pointer;
  width: fit-content;
}

.es-instruction-span:hover {
  text-decoration: underline;
}

.es-onboardingList div#evt-table-access_wrapper div[style="overflow:auto; width:100%;position:relative;"],
.es-onboardingList div#evt-table-access_wrapper div[style="overflow:auto;width:100%;position:relative;"] {
  overflow: initial !important;
}

.es-category-span {
  display: block;
  max-width: 150px;
  width: fit-content;
}

.es-owner-span {
  display: block;
  max-width: 150px;
}

.es-template-download-span {
  display: block;
  max-width: 150px;
  width: fit-content;
}

.es-client-doc-div:has(.es-client-docs-more) a.es-text-link {
  max-width: 100px !important;
}

.es-client-doc-div:has(.es-client-docs-more) .es-all-docs-popover a.es-text-link {
  max-width: 300px !important;
}

.es-onboardingList:has(.es-client-doc-div .es-client-docs-more) .es-client-doc-td {
  max-width: 175px;
  width: 175px !important;
  min-width: 175px !important;
}

.es-application-span {
  max-width: 100px;
  display: block;
  width: fit-content;
}

.es-template-download-th {
  min-width: 90px;
  max-width: 160px;
}

.es-template-download-td .evt-download-file {
  display: block;
  max-width: 135px;
  width: fit-content;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.es-template-download-td .infected-file,
.es-template-download-td .scanning-failed {
  max-width: 150px;
}
.es-template-download-td .infected-file .infected-file span {
  max-width: 117px;
}

.es-onboardingList table#evt-table-access tbody tr:hover td {
  box-shadow: inset 0 0 0 9999px #EBF7FF !important;
}

td.es-template-download-td .es-action-group {
  opacity: 0;
}

.es-onboardingList table tbody tr:hover .es-template-download-td .es-action-group {
  opacity: 1;
  transition: opacity 0.3s ease;
}

div#evt-table-access_wrapper .es-client-doc-div .es-text-link {
  display: flex;
  max-width: calc(100% - 50px);
}

.es-onboardingList-note {
  font-style: italic;
}

.es-notification-btn-onboarding {
  position: relative;
}

.es-new-notification-dot {
  position: absolute;
  top: 6px;
  right: 6px;
  height: 6px;
  width: 6px;
  background-color: red;
  border-radius: 50px;
}

.es-client-doc-div a.es-text-link {
  display: flex;
}

.es-internal-notes-div a.es-text-link {
  max-width: 130px;
}

.es-client-doc-span {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  white-space: nowrap;
}

.es-client-doc-td {
  max-width: 180px;
  width: 160px !important;
  min-width: 160px !important;
}

.es-application-td {
  border-left: 4px solid transparent !important;
}

.es-warning-tr td.es-application-td {
  border-left-color: #FFEC99 !important;
}

.es-warning-tr td,
.es-onboardingList table#evt-table-access tbody .es-warning-tr:hover td {
  background-color: rgba(255, 249, 219, 0.6);
  box-shadow: inset 0 0 0 9999px rgba(255, 249, 219, 0.6) !important;
}

.es-danger-tr td.es-application-td {
  border-left-color: #F03E3E !important;
}

.es-onboardingList table#evt-table-access tbody .es-danger-tr:hover td,
.es-danger-tr td {
  box-shadow: inset 0 0 0 9999px #FFF6F6 !important;
  background-color: #FFF6F6;
}

.es-danger-tr td.es-application-td,
.es-danger-tr td.es-category-td,
.es-danger-tr td.es-instruction-td,
.es-danger-tr td.es-owner-td,
.es-danger-tr td.es-status-td,
.es-danger-tr td.es-progress-td,
.es-danger-tr td.es-created-date-td,
.es-danger-tr td.es-updated-date-td,
.es-danger-tr .es-show-clients-td,
.es-danger-tr .es-internal-notes-td,
.es-danger-tr .es-last-updated-span {
  filter: blur(0.6px);
  pointer-events: none;
}
.es-danger-tr td.es-action-td .disabled, .es-danger-tr td.es-action-td .not-allowed {
  display: none;
}
.es-danger-tr .es-action-div i.ri-information-line {
  color: #F03E3E;
}
.es-danger-tr .es-client-doc-td .es-client-doc-div .es-action-div .es-actions-btn-wrapper .es-action-span, .es-danger-tr .es-client-docs-popover .es-single-docs .evt-client-doc-delete {
  display: none !important;
}

.es-comments-th {
  width: 90px;
}

.es-category-th {
  min-width: 100px;
}

.popover .popover-body {
  max-height: 50vh;
  overflow-y: auto;
}

.es-onboardingList .disabled {
  opacity: 0.5;
}
.es-onboardingList .sorting_disabled:before,
.es-onboardingList .sorting_disabled:after,
.es-onboardingList .sorting::after,
.es-onboardingList .sorting::before {
  opacity: 0 !important;
}
.es-onboardingList .sorting_disabled,
.es-onboardingList .sorting {
  cursor: default !important;
}

div#evt-table-access_wrapper .evt-resetFilters {
  display: none !important;
}

.es-last-updated-th.es-comments-td {
  min-width: 80px;
}

.es-onboardingList table tbody tr .es-template-download-td .es-action-group:has(.es-file-loader.evt-file-scanning) {
  opacity: 1 !important;
}
.es-onboardingList table tbody tr .es-template-download-td .es-action-group:has(.es-file-loader.evt-file-scanning.d-none) {
  opacity: 0 !important;
}
.es-onboardingList table tbody tr:hover .es-template-download-td .es-action-group:has(.es-file-loader.evt-file-scanning.d-none) {
  opacity: 1 !important;
}
.es-onboardingList table tbody tr td.es-template-download-td.es-doc-download-inprogress .es-action-group:has(.es-file-loader.evt-file-scanning.d-none) {
  opacity: 1 !important;
}

.es-file-upload-control .form-control {
  min-height: 30px;
}

.es-selected-file {
  border-radius: 2px;
  border: 1px solid #A5D8FF;
  background: #E7F5FF;
  width: fit-content;
  display: inline-flex;
  padding: 2px 8px;
  align-items: center;
  gap: 8px;
  color: #0A58CA;
  margin-bottom: 15px;
}

.es-file-upload-control {
  margin-bottom: 0px;
}

body.modal-open span.select2-container.select2-container--default.select2-container--open {
  z-index: 9999999 !important;
}

.es-onboardingList-date-fields .form-control.w-field {
  width: 100% !important;
  max-width: 100%;
}

.es-edit-access-modal .modal-dialog {
  max-width: 1356px;
}

.common_modal.es-edit-access-modal .modal-dialog .modal-content .modal-body {
  padding: 20px;
  padding-bottom: 0px;
}

.es-onboarding-textarea-fields textarea.form-control {
  min-height: 95px;
}

.es-edit-access-modal .modal-footer.es-flex-end-center .es-action-buttons {
  justify-content: flex-end;
  gap: 5px;
}

.es-onboarding-toaster {
  position: absolute;
  top: 175px;
  right: 10px;
  border-radius: 60px;
  border: 2px solid #FFF3BF;
  background: #fff;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.08);
  z-index: 9;
  width: 480px;
}

.es-toaster-icon i {
  color: #66D9E8;
  font-size: 36px;
}

.es-toaster-message {
  color: #868E96;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.es-toaster-title {
  color: #495057;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.es-toaster-icon {
  padding: 20px 8px 20px 20px;
  line-height: 36px;
  border-right: 1px solid #FFF3BF;
  display: flex;
  align-items: center;
}

.es-toaster-content {
  padding: 12px 8px;
}

body.modal-open .es-onboarding-toaster {
  right: 25px;
}

div#upload-file div#drop-zone {
  height: 372px;
}

div#evt-confirm-file-upload-modal {
  z-index: 1112;
}

.es-max-in-one-go {
  color: #868E96 !important;
}
.es-max-in-one-go b {
  color: #495057 !important;
  font-weight: 500;
}

.es-add-note-modal .es-onboarding-textarea-fields textarea.form-control {
  min-height: 275px;
}

.es-client-docs-popover {
  display: none;
}

.es-client-docs-more .es-client-docs-popover.es-open-popover {
  display: block;
}

.es-client-docs-popover {
  position: absolute;
  z-index: 9;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.08);
  padding: 12px;
  width: 390px;
  right: 0px;
  margin-top: 15px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.text-link {
  color: #0A58CA;
  cursor: pointer;
}

.es-datatable.es-client-datatable:has(.es-client-docs-more) {
  overflow-x: auto;
}

.es-datatable.es-client-datatable:has(.es-open-popover),
.es-datatable.es-client-datatable:has(.es-open-comments-popover) {
  overflow-x: clip;
}

.es-client-docs-popover-title {
  margin-bottom: 16px;
  color: #495057;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.es-single-docs {
  padding: 16px 10px 16px 0px;
  border-bottom: 1px solid #DEE2E6;
}
.es-single-docs:first-child {
  padding-top: 0px;
}
.es-single-docs:last-child {
  border-bottom: none;
  padding-bottom: 0px;
}

.es-single-docs {
  padding: 10px 0px;
  border-bottom: 1px solid #DEE2E6;
}

.es-client-doc-th {
  min-width: 260px;
}

.es-all-docs-popover {
  max-height: 260px;
  overflow-y: auto;
}

.es-client-docs-popover:before {
  content: "";
  border-style: solid;
  border-width: 10px;
  position: absolute;
  right: 19px;
  transform: translateY(-50%);
  border-color: transparent transparent #fff transparent;
  filter: drop-shadow(-1px -4px 3px rgba(0, 0, 0, 0.1));
  width: 20px;
  height: 20px;
  top: -9px;
}

.es-client-docs-more {
  position: relative;
}

.es-client-docs-popover.es-placement-top {
  transform: translateY(-100%);
  margin-top: 0px;
  top: -20px;
}

.es-client-docs-popover.es-placement-top:before {
  border-color: #fff transparent transparent transparent;
  filter: drop-shadow(-1px 4px 3px rgba(0, 0, 0, 0.1));
  top: initial;
  bottom: -30px;
}

.es-client-docs-more:has(.es-client-docs-popover.es-open-popover) .es-client-docs-more-text {
  color: #f7813d;
}

.es-download-inprogess-icon {
  height: 16px;
  width: 16px;
}

.es-action-span[aria-label=Downloading] {
  display: none !important;
}

.es-doc-download-inprogress .es-action-span[aria-label=Downloading] {
  display: inline-block !important;
}
.es-doc-download-inprogress .es-text-link,
.es-doc-download-inprogress .es-doc-item .d-flex,
.es-doc-download-inprogress .es-actions-btn-wrapper {
  cursor: not-allowed;
  opacity: 0.5;
}
.es-doc-download-inprogress .evt-client-doc-delete {
  pointer-events: none;
  opacity: 0.5;
}
.es-doc-download-inprogress .es-action-group {
  opacity: 1 !important;
}
.es-doc-download-inprogress .evt-client-doc-download,
.es-doc-download-inprogress .evt-download-file.es-action-span {
  display: none;
}
.es-doc-download-inprogress .es-template-title-wrapper {
  cursor: not-allowed;
}
.es-doc-download-inprogress .es-template-title-wrapper .evt-download-file {
  opacity: 0.5;
  pointer-events: none;
}
.es-doc-download-inprogress .es-action-div {
  opacity: 1;
}
.es-doc-download-inprogress a.evt-download-file {
  opacity: 0.5;
  pointer-events: none;
}

.es-onboardingList .not-allowed i.ri-upload-2-line {
  cursor: not-allowed;
}

.es-comments-user-image {
  width: 32px;
  height: 32px;
  border-radius: 50px;
  object-fit: cover;
}

.es-onboard-comments-popover-title {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
}

.es-comments-header {
  margin-bottom: 6px;
}

.es-no-comments-text {
  color: #878a99;
  font-size: 16px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px !important;
}

.es-onboard-comments-popover-wrapper {
  position: absolute;
  z-index: 9;
  border-radius: 2px;
  background: #FFF;
  box-shadow: 2px 4px 13px 0 rgba(0, 0, 0, 0.09);
  right: 4px;
  margin-top: 15px;
  width: 526px;
  top: 20px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.es-onboard-add-comments-footer {
  gap: 12px;
}

.es-comments-div.es-placement-bottom .es-onboard-popover-comments:after,
.es-client-docs-popover.es-placement-bottom:after {
  content: "";
  width: 15px;
  height: 15px;
  display: block;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  position: absolute;
  top: -8px;
  transform: rotate(45deg);
  right: 10px;
}

.es-client-docs-popover.es-placement-bottom:after {
  right: 22px;
}

.es-comments-div.es-placement-top .es-onboard-comments-popover-wrapper .es-onboard-popover-comments:after,
.es-client-docs-popover.es-placement-top:after {
  content: "";
  width: 15px;
  height: 15px;
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: -8px;
  transform: rotate(45deg);
  right: 10px;
}

.es-client-docs-popover.es-placement-top:after {
  right: 22px;
}

.es-onboard-popover-comments {
  padding: 12px;
}

.es-comments-user-name {
  font-weight: 600;
}

.es-comments-user-org {
  font-weight: 400;
}

.es-comments-icon {
  padding-top: 5px;
}

.es-single-onboard-comments {
  padding: 16px 10px 16px 0px;
  border-bottom: 1px solid #DEE2E6;
}
.es-single-onboard-comments:first-child {
  padding-top: 0px;
}
.es-single-onboard-comments:last-child {
  border-bottom: none;
  padding-bottom: 0px;
}

.es-comments-text {
  color: #495057;
  font-family: Inter;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  max-width: 100%;
  word-break: break-all;
}

.es-comments-date {
  font-weight: 300;
}

.es-all-onboard-comments-popover {
  max-height: 150px;
  overflow-y: auto;
  min-height: 150px;
}

.es-remove-comments-min-height {
  min-height: initial;
}

.es-onboard-add-comments-wrapper {
  padding: 8px;
  background-color: #F1F3F5;
}

.es-onboard-add-comments {
  border-radius: 4px;
  border: 1px solid #DEE2E6;
  background: #FFF;
}

.es-onboard-comments-textarea {
  height: 90px;
  border: 0px;
}

.es-onboard-add-comments-footer {
  justify-content: end;
  display: flex;
  padding: 8px 16px;
  border-top: 1px solid #DEE2E6;
}

.es-comments-div {
  position: relative;
  width: fit-content;
}

.es-onboard-popover-comments:before {
  content: "";
  border-style: solid;
  border-width: 10px;
  position: absolute;
  right: 8px;
  transform: translateY(-50%);
  border-color: transparent transparent #fff transparent;
  filter: drop-shadow(-1px -4px 3px rgba(0, 0, 0, 0.06));
  width: 20px;
  height: 20px;
  top: -9px;
}

.es-comments-div[data-active=true] .es-onboard-comments-popover-wrapper {
  display: block;
}

.es-onboard-comments-popover-wrapper {
  display: none;
}

.es-comments-div[data-active=true] i.ri-chat-3-fill {
  color: #f7813d;
}

.es-onboard-comments-popover-wrapper.es-placement-top {
  transform: translateY(-100%);
  top: -30px;
}

.es-onboard-comments-popover-wrapper.es-placement-top .es-onboard-popover-comments:before {
  border-color: #f0f2f4 transparent transparent transparent;
  filter: drop-shadow(-1px 2px 3px rgba(0, 0, 0, 0.06));
  top: initial;
  bottom: -30px;
}

.es-comments-div.es-placement-top .es-onboard-comments-popover-wrapper {
  transform: translateY(-100%);
  top: -30px;
}

.es-comments-div.es-placement-top .es-onboard-comments-popover-wrapper .es-onboard-popover-comments:before {
  border-color: #f0f2f4 transparent transparent transparent;
  filter: drop-shadow(-1px 2px 3px rgba(0, 0, 0, 0.06));
  top: initial;
  bottom: -30px;
}

.es-comments-span {
  cursor: pointer;
}

.es-onboarding-comments-loader .es-loader-gif {
  width: 20px;
}

.es-onboarding-comments-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #868e96;
}

.es-onboardingList-progress.es-onboardingList-progress-small {
  padding: 0px;
  width: fit-content;
  background-color: transparent !important;
}
.es-onboardingList-progress.es-onboardingList-progress-small .progress {
  width: 88px;
}
.es-onboardingList-progress.es-onboardingList-progress-small .es-onboardingList-progress-label {
  color: #495057;
}

.width-fit-content {
  width: fit-content !important;
}

.es-onboardingList .es-onboardingList-status .es-datatable-filter.escalon-evt-filterarea.escalon-filter {
  margin-left: 0px;
}
.es-onboardingList .es-onboardingList-status .es-datatable table.table tbody tr td,
.es-onboardingList .es-onboardingList-status .es-datatable table.table thead tr th {
  padding-right: 8px !important;
}
.es-onboardingList .es-onboardingList-status .es-truncate-text-td {
  max-width: 200px;
}
.es-onboardingList .es-onboardingList-status table thead tr th {
  vertical-align: middle;
}
.es-onboardingList .es-onboardingList-status table tbody tr td i.ri-notification-2-line {
  font-size: 18px !important;
  padding-left: 20px;
}
.es-onboardingList .es-onboardingList-status .es-client-notification-count {
  background-color: #DC3545;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  display: block;
  border-radius: 50px;
  position: absolute;
  top: 12px;
  left: 36px;
}
.es-onboardingList .es-onboardingList-status table tbody tr:last-child td {
  border-bottom: 1px solid #dee2e6 !important;
}
.es-onboardingList .es-onboardingList-status .es-notifications-th {
  padding-bottom: 0px !important;
  border: 0px !important;
  text-align: center !important;
  padding-top: 4px !important;
}
.es-onboardingList .es-onboardingList-status th.es-internal-notification,
.es-onboardingList .es-onboardingList-status th.es-client-notification {
  padding-top: 0px !important;
  font-size: 12px !important;
  color: #868E96 !important;
  font-weight: 400;
  padding-bottom: 4px !important;
  text-align: center;
}
.es-onboardingList .es-onboardingList-status td.es-client-notification-td,
.es-onboardingList .es-onboardingList-status td.es-internal-notification-td {
  text-align: center;
}

td.es-client-name-td {
  max-width: 300px;
  width: 300px;
}

.es-client-name-title {
  max-width: 290px;
  display: block;
}

td.es-vertical-td p {
  max-width: 170px;
}

.es-onboardingList-status label.es-onboardingList-label {
  display: block !important;
}
.es-onboardingList-status .escalon-filter {
  display: flex;
  align-items: center;
  gap: 20px;
}
.es-onboardingList-status .evt-resetFilters {
  margin-top: 20px;
}
.es-onboardingList-status .es-datatable-filter select.form-control {
  margin: 0 7px;
  margin-left: 0px;
}
.es-onboardingList-status .select2.select2-container.select2-container--default {
  min-width: 250px !important;
  margin-left: 0px !important;
}

.es-onboardingList-status .es-datatable-filter .select2-selection__rendered:empty,
.es-onboardingList .select2-selection__rendered:empty {
  min-height: 28px;
}

.es-onboarding-url-modal .modal-footer {
  display: none;
}
.es-onboarding-url-modal .modal-body {
  padding-top: 0px !important;
}
.es-onboarding-url-modal .modal-dialog.es-modal-md {
  max-width: 500px;
}

.es-C3-users-popover {
  position: absolute;
  z-index: 9;
  border-radius: 2px;
  background: #FFF;
  box-shadow: 2px 4px 13px 0 rgba(0, 0, 0, 0.09);
  left: 70px;
  margin-top: 15px;
  width: auto;
  top: -11px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 12px 16px;
  display: none;
  min-width: 300px;
}

.es-C3-users-popover .table-responsive {
  max-height: 350px;
}

.es-C3-users-popover-list-content {
  padding: 0px;
  list-style: none;
}

.es-C3-users-popover-username.fw-500 {
  font-weight: 600;
}

.es-C3-users-popover-list-header {
  background: #F8F9FA;
  padding: 5px;
}

.es-C3-users-popover-table tbody, .es-C3-users-popover-table tbody td {
  border: 0px !important;
}

.es-C3-users-popover:before {
  content: "";
  border-style: solid;
  border-width: 10px;
  position: absolute;
  left: -19px;
  transform: translateY(-50%);
  border-color: transparent #fff transparent transparent;
  filter: drop-shadow(-1px -4px 3px rgba(0, 0, 0, 0.06));
  width: 20px;
  height: 20px;
  top: 24px !important;
}

.es-C3-users-popover:after {
  content: "";
  width: 13px;
  height: 13px;
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 17px !important;
  transform: rotate(45deg);
  left: -8px;
}

.es-C3-users-popover-table-header th {
  background: #F8F9FA;
  border: 0px;
}

.es-C3-users-popover.show {
  display: block;
}

.es-c3-user-loader img {
  height: 30px;
}

.es-c3-user-loader {
  justify-content: center;
  display: flex;
  align-items: center;
  height: 45px;
  margin: 15px 0px;
}

.es-C3-users-popover-OB-assigned {
  width: 130px;
  min-width: 130px;
}

.es-C3-users-popover-status {
  width: 55px;
  padding-left: 50px !important;
  padding-right: 50px !important;
}

.es-C3-users-popover-username {
  min-width: fit-content !important;
}

.es-C3-users-popover-name {
  max-width: 350px;
  display: inline-block;
}

.es-C3-users-popover-table {
  min-width: 300px;
}

.es-C3-users-popover-table thead {
  position: sticky;
  top: 0;
}

.es-C3-users-popover-content:has(.es-c3-user-loader) .table-responsive.evt-c3-client-users-table-div {
  display: none;
}

.es-C3-users-popover-content:has(.es-c3-user-loader.d-none) .table-responsive.evt-c3-client-users-table-div {
  display: block;
}

.es-C3-users-popover-content:has(.evt-c3-client-no-users) .es-C3-users-popover-username {
  min-width: 75px !important;
}

.es-C3-users-popover-content:has(.evt-c3-client-no-users.d-none) .es-C3-users-popover-username {
  min-width: 75px !important;
}

div#ClientList_wrapper table#ClientList {
  table-layout: fixed;
}

div#ClientList_wrapper table#ClientList.es-client-list-table th.sorting_disabled,
div#ClientList_wrapper table#ClientList.es-client-list-table th.sorting {
  width: max-content !important;
}

div#ClientList_wrapper table#ClientList.es-client-list-table th.text-center.autoWidth.sorting_disabled {
  width: 20px !important;
}

div#ClientList_wrapper table#ClientList.es-client-list-table th.status.es-c3-onboarded {
  max-width: 100px !important;
  width: 100px !important;
}

div#ClientList_wrapper table#ClientList.es-client-list-table th.status.es-efs-enabled {
  max-width: 100px !important;
  width: 100px !important;
}

div#ClientList_wrapper table#ClientList.es-client-list-table .small.evt-modified-dt {
  width: fit-content;
  margin-left: auto;
}

.es-client-profile-status {
  background-color: #e6edf9;
  padding: 2px 5px;
  font-weight: 600;
  color: #757575;
  margin-top: 5px;
}

.tenure-crm.es-client-tenure {
  margin-top: 15px;
}

.es-prospect-list-table th.autoWidth.sorting.sorting_asc {
  width: max-content !important;
}

.es-prospect-list-table {
  table-layout: fixed;
}

.es-prospect-list-table th.text-center.autoWidth.sorting_disabled {
  width: 20px !important;
}

.es-prospect-list-table th.sorting_disabled {
  width: max-content !important;
}

.es-prospect-list-table th.text-end.autoWidth.sorting {
  width: max-content !important;
}

.es-prospect-list-table .small.evt-modified-dt {
  width: fit-content;
  margin-left: auto;
}

@media (min-width: 1600px) {
  .es-reviewtable-col-hourly {
    min-width: 25%;
    width: 25%;
    max-width: 25%;
  }
  .es-reviewtable-col-budget {
    min-width: 15%;
    text-align: right;
    flex-shrink: 0;
    width: 15%;
  }
  .es-review-hours-SKU-wrapper .es-reviewtable-col-hourly {
    min-width: 23.15%;
    width: 23.15%;
    max-width: 23.15%;
  }
  .es-reviewtable-col-approve {
    text-align: center;
  }
  .es-reviewtable-col-total-amount {
    min-width: 15%;
    width: 15%;
  }
  .es-full-height-wrapper {
    margin-top: 100px;
  }
  .es-review-top-band .fst-italic {
    max-width: max-content;
  }
  .es-es-band-content-client-name {
    max-width: 250px;
  }
}
@media (min-width: 1750px) {
  .es-hourly-text {
    max-width: 240px;
  }
  .es-table-header.text-center .es-bg-lightgrey3 {
    width: 90px;
  }
}
@media (min-width: 1000px) and (max-width: 1599px) {
  .es-onboardingList .es-action-span i {
    font-size: 13px !important;
  }
  .es-action-div {
    gap: 6px !important;
  }
  .es-onboardingList .es-datatable table.table thead tr th,
  .es-onboardingList .es-datatable table.table tbody tr td {
    padding: 0.5rem !important;
  }
  .es-template-download-span {
    max-width: 95px;
  }
  .es-internal-notes-div a.es-text-link, .es-instruction-span, .es-category-span {
    max-width: 120px;
  }
}
@media (min-width: 1000px) and (max-width: 1400px) {
  div#reviewHours-filter,
  div#reviewHours-filter *,
  .es-review-hours-wrapper *,
  .es-review-hours-wrapper,
  .es-review-hours-wrapper p {
    font-size: 10px !important;
  }
  .es-reviewHours-serviceline-table thead th {
    height: 50px;
  }
  .es-review-table-top-band {
    height: 50.5px;
  }
  .es-review-table-body {
    padding: 16px !important;
  }
  .es-review-table-body .es-yellow-band {
    margin-bottom: 16px !important;
  }
  .es-review-table-body .es-tabs .nav-tabs li .nav-link,
  .es-review-table-body .es-tabs .nav-link:focus li .nav-link,
  .es-review-table-body .es-tabs .nav-link:hover li .nav-link {
    font-size: 10px !important;
  }
  .main-content .es-review-table-body .es-not-found img,
  .main-body .es-review-table-body .es-not-found img {
    width: 105px;
  }
  .es-filter-button .es-btn-save {
    margin-top: 7px !important;
  }
  .es-es-band-content-client-name {
    max-width: 150px;
  }
}