﻿@charset "UTF-8";
/* ------------------------------------------- */
/* A mix of SMACSS + ITCSS + BEM Architecture  */
/* ------------------------------------------- */
/* $dark4: #1E2223;
$dark3: #282B2D;
$dark2: #34393B;
$dark1: #4C5558;*/
/** Theme definitions **/
/** Languages definitions **/
/*
 * Implementation of themes
 */
/*
 *Language diferences
 */
/*
 * Implementation of themes
 */
/*
 * Language diferences
 */
/*
 * Get grid breakpoint
 */
/*** ANIMATIONS ***/
.animationBlinker {
  animation: blinker 2s infinite !important;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}
@keyframes blinkerBgWhite {
  50% {
    background-color: white;
  }
}
@keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
.animate-in {
  -webkit-animation: fadeIn 0.5s ease-in;
  animation: fadeIn 0.5s ease-in;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animate-out {
  transition: opacity 0.1s;
  opacity: 0;
}

.animate-fast {
  transition-duration: 0.5s;
  animation-duration: 0.5s;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes sidebarLeftAnim {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.loading-dots span {
  margin-left: 0.6rem;
  display: inline-block;
  background-color: #E37272;
  border-radius: 50%;
  width: 4px;
  height: 4px;
  animation: loading-dots 1.6s infinite both;
}
.loading-dots span:nth-child(2) {
  animation-delay: 0.4s;
}
.loading-dots span:nth-child(3) {
  animation-delay: 0.8s;
}

@keyframes loading-dots {
  0% {
    background-color: rgba(220, 53, 69, 0.2);
  }
  20% {
    background-color: rgb(220, 53, 69);
    transform: scale(1.2);
  }
  100% {
    background-color: rgba(220, 53, 69, 0.2);
  }
}
@keyframes blink-shadow {
  0% {
    box-shadow: unset;
  }
  20% {
    box-shadow: 0px 0px 8px 2px rgb(49, 154, 203);
  }
  80% {
    box-shadow: 0px 0px 8px 2px rgb(49, 154, 203);
  }
  100% {
    background-color: unset;
  }
}
.blinkShadow {
  animation: blink-shadow 3s linear 1;
}

/** Breakpoints **/
/** Fonts **/
/** Colors **/
/** Modal **/
body {
  font-family: "OpenSans-Regular", sans-serif !important;
}

body.occidental {
  font-family: "OpenSans-Regular", sans-serif !important;
}

body.arabic {
  font-family: "NotoKufiArabic-Regular", sans-serif !important;
}

.occidental .font-weight-bold {
  font-family: "OpenSans-Bold", sans-serif;
}
.arabic .font-weight-bold {
  font-family: "NotoKufiArabic-Bold", sans-serif;
}

/** Buttons **/
/** Cards **/
/** Alerts **/
/** Modals **/
/** Forms **/
.theme-integra .border {
  border: 1px solid #d5d5d5 !important;
}
.theme-integra-dark .border {
  border: 1px solid #31383c !important;
}

.form-control {
  min-height: 32px !important;
  border-radius: 4px !important;
}
.theme-integra .form-control {
  background-color: #f3f3f3;
  border: 1px solid #d5d5d5;
  color: #5c5c5c;
}
.theme-integra-dark .form-control {
  background-color: #373f44;
  border: 1px solid #31383c;
  color: #fafafa;
}
.form-control:hover {
  cursor: pointer;
}
.theme-integra .form-control:hover {
  border: 1px solid #bbbbbb !important;
}
.theme-integra-dark .form-control:hover {
  border: 1px solid #292f32 !important;
}
.theme-integra .form-control:focus {
  border-color: #319acb;
  background-color: #f3f3f3;
  color: #5c5c5c;
}
.theme-integra-dark .form-control:focus {
  border-color: #319acb;
  background-color: #373f44;
  color: #fafafa;
}
.form-control:disabled, .form-control.disabled, .form-control[readonly], .form-control[disabled] {
  pointer-events: none;
  /*cursor: noT-allowed;*/
}
.theme-integra .form-control:disabled, .theme-integra .form-control.disabled, .theme-integra .form-control[readonly], .theme-integra .form-control[disabled] {
  background-color: #f7f7f7 !important;
  color: #8e8e8e !important;
}
.theme-integra-dark .form-control:disabled, .theme-integra-dark .form-control.disabled, .theme-integra-dark .form-control[readonly], .theme-integra-dark .form-control[disabled] {
  background-color: #3f484d !important;
  color: #c6c6c6 !important;
}

.theme-integra .disabled .form-control {
  background-color: #f7f7f7 !important;
  color: #8e8e8e !important;
}
.theme-integra-dark .disabled .form-control {
  background-color: #3f484d !important;
  color: #c6c6c6 !important;
}

.was-validated .form-control:invalid,
.form-control.is-invalid {
  box-shadow: 0px 0px 1px 2px #E37272;
}

.invalid-feedback {
  font-size: 12px;
}

.theme-integra .input-group-text,
.theme-integra .input-group-text > label {
  background-color: #f3f3f3;
  border: 1px solid #d5d5d5;
  color: #5c5c5c;
}
.theme-integra-dark .input-group-text,
.theme-integra-dark .input-group-text > label {
  background-color: #373f44;
  border: 1px solid #31383c;
  color: #fafafa;
}
.theme-integra .input-group-text:hover,
.theme-integra .input-group-text > label:hover {
  color: #5c5c5c !important;
}
.theme-integra-dark .input-group-text:hover,
.theme-integra-dark .input-group-text > label:hover {
  color: #fafafa !important;
}

.theme-integra .img-thumbnail {
  background-color: #ffffff;
}
.theme-integra-dark .img-thumbnail {
  background-color: #444e54;
}

:root {
  font-size: 14px;
}

@media (min-width: 400px) and (max-width: 1440px) {
  :root {
    font-size: calc(14px + (16 - 14) * (100vw - 400px) / (1440 - 400));
  }
}
@media (min-width: 1440px) {
  :root {
    font-size: 16px;
  }
}
.dropdown-toggle::after {
  font-family: "ej-webfont";
  content: "\e631" !important;
  vertical-align: 0 !important;
  border-top: none !important;
  font-size: 10px !important;
}

.dropleft .dropdown-toggle::before {
  font-family: "ej-webfont";
  content: "\e630" !important;
  vertical-align: 0 !important;
  border-right: none !important;
  font-size: 10px !important;
}

.badge {
  border-radius: 2px !important;
  padding: 5px 12px !important;
  font-size: 12px !important;
}

.badge.badge-pill {
  padding: 0.25em 0.4em !important;
  border-radius: 1rem !important;
}

.badge-success {
  background: rgba(146, 192, 137, 0.3) !important;
  color: #92C089 !important;
}

.badge:empty {
  display: none !important;
}

.theme-integra .progress {
  background-color: #b4b4b4;
}
.theme-integra-dark .progress {
  background-color: #8e9498;
}

.progress.position-absolute {
  background-color: transparent;
}

.size-3 {
  font-size: 1rem;
}

.size-2 {
  font-size: 0.875rem;
}

.theme-integra .color-default {
  color: #319acb;
}
.theme-integra-dark .color-default {
  color: #319acb;
}

.theme-integra a.color-default {
  color: #319acb;
}
.theme-integra-dark a.color-default {
  color: #319acb;
}

a.color-default:hover {
  text-decoration: none !important;
}
.theme-integra a.color-default:hover {
  color: #387c9b !important;
}
.theme-integra-dark a.color-default:hover {
  color: #387c9b !important;
}

a:hover {
  text-decoration: none !important;
}

.clickable,
.seleccionable {
  cursor: pointer;
}

.occidental .small {
  font-family: "OpenSans-Regular", sans-serif;
}
.arabic .small {
  font-family: "NotoKufiArabic-Regular", sans-serif;
}

.bold {
  font-family: "OpenSans-Bold";
}
.occidental .bold {
  font-family: "OpenSans-Bold", sans-serif;
}
.arabic .bold {
  font-family: "NotoKufiArabic-Bold", sans-serif;
}

.silka {
  font-family: "Silka-Light";
}

.theme-integra .color-yellow {
  color: #e9c417 !important;
}
.theme-integra-dark .color-yellow {
  color: #e9c417 !important;
}

.theme-integra .color-green {
  color: #92c089 !important;
}
.theme-integra-dark .color-green {
  color: #92c089 !important;
}

.theme-integra .color-red {
  color: #e37272 !important;
}
.theme-integra-dark .color-red {
  color: #e37272 !important;
}

.theme-integra .color-grey {
  color: #c6c6c6 !important;
}
.theme-integra-dark .color-grey {
  color: #8e8e8e !important;
}

.color-transparent {
  color: transparent !important;
}

.color-default {
  /* &:hover {
       @include themify($themes) {
           color: themed('hover') !important;
       }
   }*/
}
.theme-integra .color-default {
  color: #319acb !important;
}
.theme-integra-dark .color-default {
  color: #319acb !important;
}

.theme-integra .inactiveAlarm {
  color: #b4b4b4 !important;
  background-color: #f7f7f7 !important;
}
.theme-integra-dark .inactiveAlarm {
  color: #8e9498 !important;
  background-color: #3f484d !important;
}

.theme-integra .colorIconLanding {
  color: #5c5c5c !important;
}
.theme-integra-dark .colorIconLanding {
  color: #fafafa !important;
}

.validationErrorPopup {
  z-index: 10000 !important;
  font-size: 0.85714286rem !important;
  font-weight: bold !important;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  padding: 0.3em 1em !important;
}

.text-underline {
  text-decoration: underline;
}

p {
  white-space: unset !important;
  overflow: unset !important;
  text-overflow: unset !important;
}

/*!
 * Bootstrap v4.5.3 (https://getbootstrap.com/)
 * Copyright 2011-2020 The Bootstrap Authors
 * Copyright 2011-2020 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #E37272;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #319ACB;
  --secondary: #5127A4;
  --success: #92C089;
  --info: #17a2b8;
  --warning: #E9C417;
  --danger: #E37272;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 767px;
  --breakpoint-md: 992px;
  --breakpoint-lg: 1200px;
  --breakpoint-xl: 1920px;
  --font-family-sans-serif: "NotoKufiArabic-Regular", sans-serif;
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  margin: 0;
  font-family: "NotoKufiArabic-Regular", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #319ACB;
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  color: rgb(34.125, 107.25, 141.375);
  text-decoration: underline;
}

a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

label {
  display: inline-block;
  margin-bottom: 0.25rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}
@media (max-width: 1200px) {
  legend {
    font-size: calc(1.275rem + 0.3vw);
  }
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 2.5rem;
}
@media (max-width: 1200px) {
  h1, .h1 {
    font-size: calc(1.375rem + 1.5vw);
  }
}

h2, .h2 {
  font-size: 2rem;
}
@media (max-width: 1200px) {
  h2, .h2 {
    font-size: calc(1.325rem + 0.9vw);
  }
}

h3, .h3 {
  font-size: 1.75rem;
}
@media (max-width: 1200px) {
  h3, .h3 {
    font-size: calc(1.3rem + 0.6vw);
  }
}

h4, .h4 {
  font-size: 1.5rem;
}
@media (max-width: 1200px) {
  h4, .h4 {
    font-size: calc(1.275rem + 0.3vw);
  }
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 0.875rem;
}

.lead {
  font-size: 0.9375rem;
  font-weight: 300;
}

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}
@media (max-width: 1200px) {
  .display-1 {
    font-size: calc(1.725rem + 5.7vw);
  }
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}
@media (max-width: 1200px) {
  .display-2 {
    font-size: calc(1.675rem + 5.1vw);
  }
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}
@media (max-width: 1200px) {
  .display-3 {
    font-size: calc(1.575rem + 3.9vw);
  }
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}
@media (max-width: 1200px) {
  .display-4 {
    font-size: calc(1.475rem + 2.7vw);
  }
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small {
  font-size: 85%;
  font-weight: 400;
}

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.blockquote-footer {
  display: block;
  font-size: 85%;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "— ";
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 90%;
  color: #6c757d;
}

code {
  font-size: 87.5%;
  color: #e83e8c;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}

pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.container,
.container-fluid,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 767px) {
  .container-sm, .container {
    max-width: 767px;
  }
}
@media (min-width: 992px) {
  .container-md, .container-sm, .container {
    max-width: 992px;
  }
}
@media (min-width: 1200px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 1200px;
  }
}
@media (min-width: 1920px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1440px;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.row-cols-1 > * {
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

@media (min-width: 767px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-last {
    order: 13;
  }
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-6 {
    order: 6;
  }
  .order-sm-7 {
    order: 7;
  }
  .order-sm-8 {
    order: 8;
  }
  .order-sm-9 {
    order: 9;
  }
  .order-sm-10 {
    order: 10;
  }
  .order-sm-11 {
    order: 11;
  }
  .order-sm-12 {
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 992px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-last {
    order: 13;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1200px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-last {
    order: 13;
  }
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-12 {
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1920px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-last {
    order: 13;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-12 {
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}
.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}
.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid #dee2e6;
}
.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}
.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
  color: #212529;
  background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: rgb(197.32, 226.72, 240.44);
}
.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: rgb(147.88, 202.48, 227.96);
}

.table-hover .table-primary:hover {
  background-color: rgb(176.9595348837, 216.7374418605, 235.3004651163);
}
.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: rgb(176.9595348837, 216.7374418605, 235.3004651163);
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: rgb(206.28, 194.52, 229.52);
}
.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: rgb(164.52, 142.68, 207.68);
}

.table-hover .table-secondary:hover {
  background-color: rgb(191.8272312704, 176.5786319218, 221.9613680782);
}
.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: rgb(191.8272312704, 176.5786319218, 221.9613680782);
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: rgb(224.48, 237.36, 221.96);
}
.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: rgb(198.32, 222.24, 193.64);
}

.table-hover .table-success:hover {
  background-color: rgb(209.1236464088, 228.4843093923, 205.3356906077);
}
.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: rgb(209.1236464088, 228.4843093923, 205.3356906077);
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: rgb(190.04, 228.96, 235.12);
}
.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
  border-color: rgb(134.36, 206.64, 218.08);
}

.table-hover .table-info:hover {
  background-color: rgb(170.5152475248, 221.1332673267, 229.1447524752);
}
.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: rgb(170.5152475248, 221.1332673267, 229.1447524752);
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: rgb(248.84, 238.48, 190.04);
}
.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
  border-color: rgb(243.56, 224.32, 134.36);
}

.table-hover .table-warning:hover {
  background-color: rgb(246.6313385827, 232.5567716535, 166.7486614173);
}
.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: rgb(246.6313385827, 232.5567716535, 166.7486614173);
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: rgb(247.16, 215.52, 215.52);
}
.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: rgb(240.44, 181.68, 181.68);
}

.table-hover .table-danger:hover {
  background-color: rgb(242.935147929, 194.244852071, 194.244852071);
}
.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: rgb(242.935147929, 194.244852071, 194.244852071);
}

.table-light,
.table-light > th,
.table-light > td {
  background-color: rgb(253.04, 253.32, 253.6);
}
.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: rgb(251.36, 251.88, 252.4);
}

.table-hover .table-light:hover {
  background-color: rgb(238.165, 240.57, 242.975);
}
.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: rgb(238.165, 240.57, 242.975);
}

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: rgb(198.16, 199.84, 201.52);
}
.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: rgb(149.44, 152.56, 155.68);
}

.table-hover .table-dark:hover {
  background-color: rgb(185.0216751269, 187.09, 189.1583248731);
}
.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: rgb(185.0216751269, 187.09, 189.1583248731);
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}
.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
  color: #fff;
  background-color: #343a40;
  border-color: rgb(69.1465517241, 77.125, 85.1034482759);
}
.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.table-dark {
  color: #fff;
  background-color: #343a40;
}
.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: rgb(69.1465517241, 77.125, 85.1034482759);
}
.table-dark.table-bordered {
  border: 0;
}
.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}
.table-dark.table-hover tbody tr:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 766.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}
@media (max-width: 1919.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-responsive > .table-bordered {
  border: 0;
}

.form-control {
  display: block;
  width: 100%;
  height: 32px;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}
.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: rgb(149.875, 204.25, 229.625);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(49, 154, 203, 0.25);
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

input[type=date].form-control,
input[type=time].form-control,
input[type=datetime-local].form-control,
input[type=month].form-control {
  appearance: none;
}

select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.65625rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.65625rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

select.form-control[size], select.form-control[multiple] {
  height: auto;
}

textarea.form-control {
  height: auto;
}

.form-group {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}
.form-row > .col,
.form-row > [class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}
.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 85%;
  color: #92C089;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.65625rem;
  line-height: 1.5;
  color: #212529;
  background-color: rgba(146, 192, 137, 0.9);
  border-radius: 0.25rem;
}

.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: #92C089;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2392C089' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #92C089;
  box-shadow: 0 0 0 0.2rem rgba(146, 192, 137, 0.25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:valid, .custom-select.is-valid {
  border-color: #92C089;
  padding-right: calc(0.75em + 2.3125rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2392C089' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
  border-color: #92C089;
  box-shadow: 0 0 0 0.2rem rgba(146, 192, 137, 0.25);
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #92C089;
}
.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #92C089;
}
.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #92C089;
}
.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: rgb(176.7127071823, 209.7513812155, 170.2486187845);
  background-color: rgb(176.7127071823, 209.7513812155, 170.2486187845);
}
.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(146, 192, 137, 0.25);
}
.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #92C089;
}

.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #92C089;
}
.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #92C089;
  box-shadow: 0 0 0 0.2rem rgba(146, 192, 137, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 85%;
  color: #E37272;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.65625rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(227, 114, 114, 0.9);
  border-radius: 0.25rem;
}

.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: #E37272;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23E37272' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23E37272' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #E37272;
  box-shadow: 0 0 0 0.2rem rgba(227, 114, 114, 0.25);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:invalid, .custom-select.is-invalid {
  border-color: #E37272;
  padding-right: calc(0.75em + 2.3125rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23E37272' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23E37272' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
  border-color: #E37272;
  box-shadow: 0 0 0 0.2rem rgba(227, 114, 114, 0.25);
}

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #E37272;
}
.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  color: #E37272;
}
.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #E37272;
}
.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: rgb(235.449704142, 156.550295858, 156.550295858);
  background-color: rgb(235.449704142, 156.550295858, 156.550295858);
}
.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(227, 114, 114, 0.25);
}
.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #E37272;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #E37272;
}
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #E37272;
  box-shadow: 0 0 0 0.2rem rgba(227, 114, 114, 0.25);
}

.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.form-inline .form-check {
  width: 100%;
}
@media (min-width: 767px) {
  .form-inline label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
  .form-inline .form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 0;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
  .form-inline .input-group,
  .form-inline .custom-select {
    width: auto;
  }
  .form-inline .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }
  .form-inline .form-check-input {
    position: relative;
    flex-shrink: 0;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .form-inline .custom-control {
    align-items: center;
    justify-content: center;
  }
  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: transparent;
  border: 0 solid transparent;
  padding: 0 1rem;
  font-size: 0.75rem;
  line-height: 0.75rem;
  border-radius: 4px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: #212529;
  text-decoration: none;
}
.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(49, 154, 203, 0.25);
}
.btn.disabled, .btn:disabled {
  opacity: 0.65;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}
a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

.btn-primary {
  color: #fff;
  background-color: #319ACB;
  border-color: #319ACB;
}
.btn-primary:hover {
  color: #fff;
  background-color: rgb(41.5625, 130.625, 172.1875);
  border-color: rgb(39.0833333333, 122.8333333333, 161.9166666667);
}
.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: rgb(41.5625, 130.625, 172.1875);
  border-color: rgb(39.0833333333, 122.8333333333, 161.9166666667);
  box-shadow: 0 0 0 0.2rem rgba(79.9, 169.15, 210.8, 0.5);
}
.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #319ACB;
  border-color: #319ACB;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: rgb(39.0833333333, 122.8333333333, 161.9166666667);
  border-color: rgb(36.6041666667, 115.0416666667, 151.6458333333);
}
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(79.9, 169.15, 210.8, 0.5);
}

.btn-secondary {
  color: #fff;
  background-color: #5127A4;
  border-color: #5127A4;
}
.btn-secondary:hover {
  color: #fff;
  background-color: rgb(65.7376847291, 31.6514778325, 133.0985221675);
  border-color: rgb(60.6502463054, 29.2019704433, 122.7980295567);
}
.btn-secondary:focus, .btn-secondary.focus {
  color: #fff;
  background-color: rgb(65.7376847291, 31.6514778325, 133.0985221675);
  border-color: rgb(60.6502463054, 29.2019704433, 122.7980295567);
  box-shadow: 0 0 0 0.2rem rgba(107.1, 71.4, 177.65, 0.5);
}
.btn-secondary.disabled, .btn-secondary:disabled {
  color: #fff;
  background-color: #5127A4;
  border-color: #5127A4;
}
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: rgb(60.6502463054, 29.2019704433, 122.7980295567);
  border-color: rgb(55.5628078818, 26.7524630542, 112.4975369458);
}
.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(107.1, 71.4, 177.65, 0.5);
}

.btn-success {
  color: #212529;
  background-color: #92C089;
  border-color: #92C089;
}
.btn-success:hover {
  color: #212529;
  background-color: rgb(122.9654696133, 178.6864640884, 112.0635359116);
  border-color: rgb(115.2872928177, 174.2486187845, 103.7513812155);
}
.btn-success:focus, .btn-success.focus {
  color: #212529;
  background-color: rgb(122.9654696133, 178.6864640884, 112.0635359116);
  border-color: rgb(115.2872928177, 174.2486187845, 103.7513812155);
  box-shadow: 0 0 0 0.2rem rgba(129.05, 168.75, 122.6, 0.5);
}
.btn-success.disabled, .btn-success:disabled {
  color: #212529;
  background-color: #92C089;
  border-color: #92C089;
}
.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: rgb(115.2872928177, 174.2486187845, 103.7513812155);
  border-color: rgb(107.6091160221, 169.8107734807, 95.4392265193);
}
.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(129.05, 168.75, 122.6, 0.5);
}

.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:hover {
  color: #fff;
  background-color: rgb(18.75, 132.0652173913, 150);
  border-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
}
.btn-info:focus, .btn-info.focus {
  color: #fff;
  background-color: rgb(18.75, 132.0652173913, 150);
  border-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
  box-shadow: 0 0 0 0.2rem rgba(57.8, 175.95, 194.65, 0.5);
}
.btn-info.disabled, .btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
  border-color: rgb(15.9166666667, 112.1086956522, 127.3333333333);
}
.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(57.8, 175.95, 194.65, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #E9C417;
  border-color: #E9C417;
}
.btn-warning:hover {
  color: #212529;
  background-color: rgb(198.8897637795, 167.1702755906, 18.8602362205);
  border-color: rgb(187.2440944882, 157.3818897638, 17.7559055118);
}
.btn-warning:focus, .btn-warning.focus {
  color: #212529;
  background-color: rgb(198.8897637795, 167.1702755906, 18.8602362205);
  border-color: rgb(187.2440944882, 157.3818897638, 17.7559055118);
  box-shadow: 0 0 0 0.2rem rgba(203, 172.15, 25.7, 0.5);
}
.btn-warning.disabled, .btn-warning:disabled {
  color: #212529;
  background-color: #E9C417;
  border-color: #E9C417;
}
.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: rgb(187.2440944882, 157.3818897638, 17.7559055118);
  border-color: rgb(175.5984251969, 147.593503937, 16.6515748031);
}
.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(203, 172.15, 25.7, 0.5);
}

.btn-danger {
  color: #fff;
  background-color: #E37272;
  border-color: #E37272;
}
.btn-danger:hover {
  color: #fff;
  background-color: rgb(220.6627218935, 82.0872781065, 82.0872781065);
  border-color: rgb(218.550295858, 71.449704142, 71.449704142);
}
.btn-danger:focus, .btn-danger.focus {
  color: #fff;
  background-color: rgb(220.6627218935, 82.0872781065, 82.0872781065);
  border-color: rgb(218.550295858, 71.449704142, 71.449704142);
  box-shadow: 0 0 0 0.2rem rgba(231.2, 135.15, 135.15, 0.5);
}
.btn-danger.disabled, .btn-danger:disabled {
  color: #fff;
  background-color: #E37272;
  border-color: #E37272;
}
.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: rgb(218.550295858, 71.449704142, 71.449704142);
  border-color: rgb(216.4378698225, 60.8121301775, 60.8121301775);
}
.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(231.2, 135.15, 135.15, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:hover {
  color: #212529;
  background-color: rgb(225.6875, 229.875, 234.0625);
  border-color: rgb(218.25, 223.5, 228.75);
}
.btn-light:focus, .btn-light.focus {
  color: #212529;
  background-color: rgb(225.6875, 229.875, 234.0625);
  border-color: rgb(218.25, 223.5, 228.75);
  box-shadow: 0 0 0 0.2rem rgba(215.75, 217.2, 218.65, 0.5);
}
.btn-light.disabled, .btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: rgb(218.25, 223.5, 228.75);
  border-color: rgb(210.8125, 217.125, 223.4375);
}
.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(215.75, 217.2, 218.65, 0.5);
}

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:hover {
  color: #fff;
  background-color: rgb(34.8534482759, 38.875, 42.8965517241);
  border-color: rgb(29.1379310345, 32.5, 35.8620689655);
}
.btn-dark:focus, .btn-dark.focus {
  color: #fff;
  background-color: rgb(34.8534482759, 38.875, 42.8965517241);
  border-color: rgb(29.1379310345, 32.5, 35.8620689655);
  box-shadow: 0 0 0 0.2rem rgba(82.45, 87.55, 92.65, 0.5);
}
.btn-dark.disabled, .btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: rgb(29.1379310345, 32.5, 35.8620689655);
  border-color: rgb(23.4224137931, 26.125, 28.8275862069);
}
.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(82.45, 87.55, 92.65, 0.5);
}

.btn-outline-primary {
  color: #319ACB;
  border-color: #319ACB;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #319ACB;
  border-color: #319ACB;
}
.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(49, 154, 203, 0.5);
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #319ACB;
  background-color: transparent;
}
.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #319ACB;
  border-color: #319ACB;
}
.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(49, 154, 203, 0.5);
}

.btn-outline-secondary {
  color: #5127A4;
  border-color: #5127A4;
}
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #5127A4;
  border-color: #5127A4;
}
.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(81, 39, 164, 0.5);
}
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #5127A4;
  background-color: transparent;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #5127A4;
  border-color: #5127A4;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(81, 39, 164, 0.5);
}

.btn-outline-success {
  color: #92C089;
  border-color: #92C089;
}
.btn-outline-success:hover {
  color: #212529;
  background-color: #92C089;
  border-color: #92C089;
}
.btn-outline-success:focus, .btn-outline-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(146, 192, 137, 0.5);
}
.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #92C089;
  background-color: transparent;
}
.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle {
  color: #212529;
  background-color: #92C089;
  border-color: #92C089;
}
.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(146, 192, 137, 0.5);
}

.btn-outline-info {
  color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:focus, .btn-outline-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}
.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-warning {
  color: #E9C417;
  border-color: #E9C417;
}
.btn-outline-warning:hover {
  color: #212529;
  background-color: #E9C417;
  border-color: #E9C417;
}
.btn-outline-warning:focus, .btn-outline-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(233, 196, 23, 0.5);
}
.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #E9C417;
  background-color: transparent;
}
.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #E9C417;
  border-color: #E9C417;
}
.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(233, 196, 23, 0.5);
}

.btn-outline-danger {
  color: #E37272;
  border-color: #E37272;
}
.btn-outline-danger:hover {
  color: #fff;
  background-color: #E37272;
  border-color: #E37272;
}
.btn-outline-danger:focus, .btn-outline-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(227, 114, 114, 0.5);
}
.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #E37272;
  background-color: transparent;
}
.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #E37272;
  border-color: #E37272;
}
.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(227, 114, 114, 0.5);
}

.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:focus, .btn-outline-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}
.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
  color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:focus, .btn-outline-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}
.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #319ACB;
  text-decoration: none;
}
.btn-link:hover {
  color: rgb(34.125, 107.25, 141.375);
  text-decoration: underline;
}
.btn-link:focus, .btn-link.focus {
  text-decoration: underline;
}
.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.btn-sm, .btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.65625rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 0.5rem;
}

input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
  width: 100%;
}

.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0 0;
  margin: 0.125rem 0 0;
  font-size: 0.75rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

.dropdown-menu-left {
  right: auto;
  left: 0;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

@media (min-width: 767px) {
  .dropdown-menu-sm-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-md-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-lg-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1920px) {
  .dropdown-menu-xl-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-right {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}
.dropright .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}
.dropleft .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropleft .dropdown-toggle::after {
  display: none;
}
.dropleft .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-menu[x-placement^=top], .dropdown-menu[x-placement^=right], .dropdown-menu[x-placement^=bottom], .dropdown-menu[x-placement^=left] {
  right: auto;
  bottom: auto;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:first-child {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.dropdown-item:last-child {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.dropdown-item:hover, .dropdown-item:focus {
  color: rgb(21.6283783784, 24.25, 26.8716216216);
  text-decoration: none;
  background-color: #f8f9fa;
}
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #319ACB;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0 1rem;
  margin-bottom: 0;
  font-size: 0.65625rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1rem;
  color: #212529;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover {
  z-index: 1;
}
.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: 0;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}
.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropright .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: 0;
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
  margin-bottom: 0;
}
.btn-group-toggle > .btn input[type=radio],
.btn-group-toggle > .btn input[type=checkbox],
.btn-group-toggle > .btn-group > .btn input[type=radio],
.btn-group-toggle > .btn-group > .btn input[type=checkbox] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-control-plaintext,
.input-group > .custom-select,
.input-group > .custom-file {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  margin-bottom: 0;
}
.input-group > .form-control + .form-control,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .custom-file,
.input-group > .form-control-plaintext + .form-control,
.input-group > .form-control-plaintext + .custom-select,
.input-group > .form-control-plaintext + .custom-file,
.input-group > .custom-select + .form-control,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
  margin-left: -1px;
}
.input-group > .form-control:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}
.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}
.input-group > .form-control:not(:last-child),
.input-group > .custom-select:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .form-control:not(:first-child),
.input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group > .custom-file {
  display: flex;
  align-items: center;
}
.input-group > .custom-file:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group-prepend,
.input-group-append {
  display: flex;
}
.input-group-prepend .btn,
.input-group-append .btn {
  position: relative;
  z-index: 2;
}
.input-group-prepend .btn:focus,
.input-group-append .btn:focus {
  z-index: 3;
}
.input-group-prepend .btn + .btn,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-append .btn + .btn,
.input-group-append .btn + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn {
  margin-left: -1px;
}

.input-group-prepend {
  margin-right: -1px;
}

.input-group-append {
  margin-left: -1px;
}

.input-group-text {
  display: flex;
  align-items: center;
  height: 32px;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}
.input-group-text input[type=radio],
.input-group-text input[type=checkbox] {
  margin-top: 0;
}

.input-group-lg > .form-control:not(textarea),
.input-group-lg > .custom-select {
  height: calc(1.5em + 1rem + 2px);
}

.input-group-lg > .form-control,
.input-group-lg > .custom-select,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-append > .btn {
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.input-group-sm > .form-control:not(textarea),
.input-group-sm > .custom-select {
  height: calc(1.5em + 0.5rem + 2px);
}

.input-group-sm > .form-control,
.input-group-sm > .custom-select,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.65625rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.input-group-lg > .custom-select,
.input-group-sm > .custom-select {
  padding-right: 1.75rem;
}

.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text,
.input-group > .input-group-append:not(:last-child) > .btn,
.input-group > .input-group-append:not(:last-child) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-control {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 1.125rem;
  padding-left: 1.5rem;
  color-adjust: exact;
}

.custom-control-inline {
  display: inline-flex;
  margin-right: 1rem;
}

.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.0625rem;
  opacity: 0;
}
.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #319ACB;
  background-color: #319ACB;
}
.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(49, 154, 203, 0.25);
}
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: rgb(149.875, 204.25, 229.625);
}
.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: rgb(190.9583333333, 224.0833333333, 239.5416666667);
  border-color: rgb(190.9583333333, 224.0833333333, 239.5416666667);
}
.custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}
.custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}
.custom-control-label::before {
  position: absolute;
  top: 0.0625rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: #adb5bd solid 1px;
}
.custom-control-label::after {
  position: absolute;
  top: 0.0625rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: no-repeat 50%/50% 50%;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 0.25rem;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: #319ACB;
  background-color: #319ACB;
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(49, 154, 203, 0.5);
}
.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(49, 154, 203, 0.5);
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(49, 154, 203, 0.5);
}

.custom-switch {
  padding-left: 2.25rem;
}
.custom-switch .custom-control-label::before {
  left: -2.25rem;
  width: 1.75rem;
  pointer-events: all;
  border-radius: 0.5rem;
}
.custom-switch .custom-control-label::after {
  top: calc(0.0625rem + 2px);
  left: calc(-2.25rem + 2px);
  width: calc(1rem - 4px);
  height: calc(1rem - 4px);
  background-color: #adb5bd;
  border-radius: 0.5rem;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .custom-switch .custom-control-label::after {
    transition: none;
  }
}
.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #fff;
  transform: translateX(0.75rem);
}
.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(49, 154, 203, 0.5);
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: 32px;
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  appearance: none;
}
.custom-select:focus {
  border-color: rgb(149.875, 204.25, 229.625);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(49, 154, 203, 0.25);
}
.custom-select:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}
.custom-select[multiple], .custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}
.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}
.custom-select::-ms-expand {
  display: none;
}
.custom-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

.custom-select-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.65625rem;
}

.custom-select-lg {
  height: calc(1.5em + 1rem + 2px);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 0.9375rem;
}

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 32px;
  margin-bottom: 0;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 32px;
  margin: 0;
  opacity: 0;
}
.custom-file-input:focus ~ .custom-file-label {
  border-color: rgb(149.875, 204.25, 229.625);
  box-shadow: 0 0 0 0.2rem rgba(49, 154, 203, 0.25);
}
.custom-file-input[disabled] ~ .custom-file-label, .custom-file-input:disabled ~ .custom-file-label {
  background-color: #e9ecef;
}
.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}
.custom-file-input ~ .custom-file-label[data-browse]::after {
  content: attr(data-browse);
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: 32px;
  padding: 0.375rem 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}
.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(1.5em + 0.75rem);
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: inherit;
  border-radius: 0 0.25rem 0.25rem 0;
}

.custom-range {
  width: 100%;
  height: 1.4rem;
  padding: 0;
  background-color: transparent;
  appearance: none;
}
.custom-range:focus {
  outline: none;
}
.custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(49, 154, 203, 0.25);
}
.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(49, 154, 203, 0.25);
}
.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(49, 154, 203, 0.25);
}
.custom-range::-moz-focus-outer {
  border: 0;
}
.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #319ACB;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-webkit-slider-thumb {
    transition: none;
  }
}
.custom-range::-webkit-slider-thumb:active {
  background-color: rgb(190.9583333333, 224.0833333333, 239.5416666667);
}
.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #319ACB;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-moz-range-thumb {
    transition: none;
  }
}
.custom-range::-moz-range-thumb:active {
  background-color: rgb(190.9583333333, 224.0833333333, 239.5416666667);
}
.custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0.2rem;
  margin-left: 0.2rem;
  background-color: #319ACB;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-ms-thumb {
    transition: none;
  }
}
.custom-range::-ms-thumb:active {
  background-color: rgb(190.9583333333, 224.0833333333, 239.5416666667);
}
.custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
}
.custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}
.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}
.custom-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}
.custom-range:disabled::-webkit-slider-runnable-track {
  cursor: default;
}
.custom-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}
.custom-range:disabled::-moz-range-track {
  cursor: default;
}
.custom-range:disabled::-ms-thumb {
  background-color: #adb5bd;
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .custom-control-label::before,
  .custom-file-label,
  .custom-select {
    transition: none;
  }
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}
.nav-link:hover, .nav-link:focus {
  text-decoration: none;
}
.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-item {
  margin-bottom: -1px;
}
.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
}
.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  border-radius: 0.25rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #319ACB;
}

.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;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}
.navbar .container,
.navbar .container-fluid,
.navbar .container-sm,
.navbar .container-md,
.navbar .container-lg,
.navbar .container-xl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  display: inline-block;
  padding-top: 0.359375rem;
  padding-bottom: 0.359375rem;
  margin-right: 1rem;
  font-size: 0.9375rem;
  line-height: inherit;
  white-space: nowrap;
}
.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 0.9375rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 4px;
}
.navbar-toggler:hover, .navbar-toggler:focus {
  text-decoration: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
}

@media (max-width: 766.98px) {
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid,
  .navbar-expand-sm > .container-sm,
  .navbar-expand-sm > .container-md,
  .navbar-expand-sm > .container-lg,
  .navbar-expand-sm > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 767px) {
  .navbar-expand-sm {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid,
  .navbar-expand-sm > .container-sm,
  .navbar-expand-sm > .container-md,
  .navbar-expand-sm > .container-lg,
  .navbar-expand-sm > .container-xl {
    flex-wrap: nowrap;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid,
  .navbar-expand-md > .container-sm,
  .navbar-expand-md > .container-md,
  .navbar-expand-md > .container-lg,
  .navbar-expand-md > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 992px) {
  .navbar-expand-md {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid,
  .navbar-expand-md > .container-sm,
  .navbar-expand-md > .container-md,
  .navbar-expand-md > .container-lg,
  .navbar-expand-md > .container-xl {
    flex-wrap: nowrap;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}
@media (max-width: 1199.98px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid,
  .navbar-expand-lg > .container-sm,
  .navbar-expand-lg > .container-md,
  .navbar-expand-lg > .container-lg,
  .navbar-expand-lg > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-lg {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid,
  .navbar-expand-lg > .container-sm,
  .navbar-expand-lg > .container-md,
  .navbar-expand-lg > .container-lg,
  .navbar-expand-lg > .container-xl {
    flex-wrap: nowrap;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}
@media (max-width: 1919.98px) {
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid,
  .navbar-expand-xl > .container-sm,
  .navbar-expand-xl > .container-md,
  .navbar-expand-xl > .container-lg,
  .navbar-expand-xl > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1920px) {
  .navbar-expand-xl {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid,
  .navbar-expand-xl > .container-sm,
  .navbar-expand-xl > .container-md,
  .navbar-expand-xl > .container-lg,
  .navbar-expand-xl > .container-xl {
    flex-wrap: nowrap;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}
.navbar-expand {
  flex-flow: row nowrap;
  justify-content: flex-start;
}
.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl {
  padding-right: 0;
  padding-left: 0;
}
.navbar-expand .navbar-nav {
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl {
  flex-wrap: nowrap;
}
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}
.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}
.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #fff;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-text a {
  color: #fff;
}
.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
  color: #fff;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid #FFFFFF;
  border-radius: 0;
}
.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: 0;
  border-top-right-radius: 0;
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}
.card-link + .card-link {
  margin-left: 1.25rem;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid #FFFFFF;
}
.card-header:first-child {
  border-radius: 0 0 0 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid #FFFFFF;
}
.card-footer:last-child {
  border-radius: 0 0 0 0;
}

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
  border-radius: 0;
}

.card-img,
.card-img-top,
.card-img-bottom {
  flex-shrink: 0;
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.card-deck .card {
  margin-bottom: 15px;
}
@media (min-width: 767px) {
  .card-deck {
    display: flex;
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .card-deck .card {
    flex: 1 0 0%;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

.card-group > .card {
  margin-bottom: 15px;
}
@media (min-width: 767px) {
  .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;
  }
}

.card-columns .card {
  margin-bottom: 0.75rem;
}
@media (min-width: 767px) {
  .card-columns {
    column-count: 3;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.accordion {
  overflow-anchor: none;
}
.accordion > .card {
  overflow: hidden;
}
.accordion > .card:not(:last-of-type) {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.accordion > .card:not(:first-of-type) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.accordion > .card > .card-header {
  border-radius: 0;
  margin-bottom: -1px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.breadcrumb-item {
  display: flex;
}
.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}
.breadcrumb-item.active {
  color: #6c757d;
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #319ACB;
  background-color: #fff;
  border: 1px solid #dee2e6;
}
.page-link:hover {
  z-index: 2;
  color: rgb(34.125, 107.25, 141.375);
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.page-link:focus {
  z-index: 3;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(49, 154, 203, 0.25);
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #319ACB;
  border-color: #319ACB;
}
.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.5;
}
.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.65625rem;
  line-height: 1.5;
}
.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}
.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .badge {
    transition: none;
  }
}
a.badge:hover, a.badge:focus {
  text-decoration: none;
}

.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}

.badge-primary {
  color: #fff;
  background-color: #319ACB;
}
a.badge-primary:hover, a.badge-primary:focus {
  color: #fff;
  background-color: rgb(39.0833333333, 122.8333333333, 161.9166666667);
}
a.badge-primary:focus, a.badge-primary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(49, 154, 203, 0.5);
}

.badge-secondary {
  color: #fff;
  background-color: #5127A4;
}
a.badge-secondary:hover, a.badge-secondary:focus {
  color: #fff;
  background-color: rgb(60.6502463054, 29.2019704433, 122.7980295567);
}
a.badge-secondary:focus, a.badge-secondary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(81, 39, 164, 0.5);
}

.badge-success {
  color: #212529;
  background-color: #92C089;
}
a.badge-success:hover, a.badge-success:focus {
  color: #212529;
  background-color: rgb(115.2872928177, 174.2486187845, 103.7513812155);
}
a.badge-success:focus, a.badge-success.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(146, 192, 137, 0.5);
}

.badge-info {
  color: #fff;
  background-color: #17a2b8;
}
a.badge-info:hover, a.badge-info:focus {
  color: #fff;
  background-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
}
a.badge-info:focus, a.badge-info.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.badge-warning {
  color: #212529;
  background-color: #E9C417;
}
a.badge-warning:hover, a.badge-warning:focus {
  color: #212529;
  background-color: rgb(187.2440944882, 157.3818897638, 17.7559055118);
}
a.badge-warning:focus, a.badge-warning.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(233, 196, 23, 0.5);
}

.badge-danger {
  color: #fff;
  background-color: #E37272;
}
a.badge-danger:hover, a.badge-danger:focus {
  color: #fff;
  background-color: rgb(218.550295858, 71.449704142, 71.449704142);
}
a.badge-danger:focus, a.badge-danger.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(227, 114, 114, 0.5);
}

.badge-light {
  color: #212529;
  background-color: #f8f9fa;
}
a.badge-light:hover, a.badge-light:focus {
  color: #212529;
  background-color: rgb(218.25, 223.5, 228.75);
}
a.badge-light:focus, a.badge-light.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.badge-dark {
  color: #fff;
  background-color: #343a40;
}
a.badge-dark:hover, a.badge-dark:focus {
  color: #fff;
  background-color: rgb(29.1379310345, 32.5, 35.8620689655);
}
a.badge-dark:focus, a.badge-dark.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: 0.3rem;
}
@media (min-width: 767px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}

.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 3px;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 3.625rem;
}
.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

.alert-primary {
  color: rgb(25.48, 80.08, 105.56);
  background-color: rgb(213.8, 234.8, 244.6);
  border-color: rgb(197.32, 226.72, 240.44);
}
.alert-primary hr {
  border-top-color: rgb(176.9595348837, 216.7374418605, 235.3004651163);
}
.alert-primary .alert-link {
  color: rgb(15.5633333333, 48.9133333333, 64.4766666667);
}

.alert-secondary {
  color: rgb(42.12, 20.28, 85.28);
  background-color: rgb(220.2, 211.8, 236.8);
  border-color: rgb(206.28, 194.52, 229.52);
}
.alert-secondary hr {
  border-top-color: rgb(191.8272312704, 176.5786319218, 221.9613680782);
}
.alert-secondary .alert-link {
  color: rgb(21.7702463054, 10.4819704433, 44.0780295567);
}

.alert-success {
  color: rgb(75.92, 99.84, 71.24);
  background-color: rgb(233.2, 242.4, 231.4);
  border-color: rgb(224.48, 237.36, 221.96);
}
.alert-success hr {
  border-top-color: rgb(209.1236464088, 228.4843093923, 205.3356906077);
}
.alert-success .alert-link {
  color: rgb(53.287781155, 70.0770820669, 50.0029179331);
}

.alert-info {
  color: rgb(11.96, 84.24, 95.68);
  background-color: rgb(208.6, 236.4, 240.8);
  border-color: rgb(190.04, 228.96, 235.12);
}
.alert-info hr {
  border-top-color: rgb(170.5152475248, 221.1332673267, 229.1447524752);
}
.alert-info .alert-link {
  color: rgb(6.2933333333, 44.3269565217, 50.3466666667);
}

.alert-warning {
  color: rgb(121.16, 101.92, 11.96);
  background-color: rgb(250.6, 243.2, 208.6);
  border-color: rgb(248.84, 238.48, 190.04);
}
.alert-warning hr {
  border-top-color: rgb(246.6313385827, 232.5567716535, 166.7486614173);
}
.alert-warning .alert-link {
  color: rgb(74.74203125, 62.873125, 7.37796875);
}

.alert-danger {
  color: rgb(118.04, 59.28, 59.28);
  background-color: rgb(249.4, 226.8, 226.8);
  border-color: rgb(247.16, 215.52, 215.52);
}
.alert-danger hr {
  border-top-color: rgb(242.935147929, 194.244852071, 194.244852071);
}
.alert-danger .alert-link {
  color: rgb(84.0898533724, 42.2301466276, 42.2301466276);
}

.alert-light {
  color: rgb(128.96, 129.48, 130);
  background-color: rgb(253.6, 253.8, 254);
  border-color: rgb(253.04, 253.32, 253.6);
}
.alert-light hr {
  border-top-color: rgb(238.165, 240.57, 242.975);
}
.alert-light .alert-link {
  color: rgb(103.5492351816, 103.98, 104.4107648184);
}

.alert-dark {
  color: rgb(27.04, 30.16, 33.28);
  background-color: rgb(214.4, 215.6, 216.8);
  border-color: rgb(198.16, 199.84, 201.52);
}
.alert-dark hr {
  border-top-color: rgb(185.0216751269, 187.09, 189.1583248731);
}
.alert-dark .alert-link {
  color: rgb(4.1779310345, 4.66, 5.1420689655);
}

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  line-height: 0;
  font-size: 0.5625rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #319ACB;
  transition: width 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  animation: progress-bar-stripes 1s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    animation: none;
  }
}

.media {
  display: flex;
  align-items: flex-start;
}

.media-body {
  flex: 1;
}

.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0.25rem;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}
.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}
.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.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: #6c757d;
  pointer-events: none;
  background-color: #fff;
}
.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #319ACB;
  border-color: #319ACB;
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

.list-group-horizontal {
  flex-direction: row;
}
.list-group-horizontal > .list-group-item:first-child {
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0;
}
.list-group-horizontal > .list-group-item:last-child {
  border-top-right-radius: 0.25rem;
  border-bottom-left-radius: 0;
}
.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}

@media (min-width: 767px) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }
  .list-group-horizontal-sm > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 992px) {
  .list-group-horizontal-md {
    flex-direction: row;
  }
  .list-group-horizontal-md > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1200px) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }
  .list-group-horizontal-lg > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1920px) {
  .list-group-horizontal-xl {
    flex-direction: row;
  }
  .list-group-horizontal-xl > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
.list-group-flush {
  border-radius: 0;
}
.list-group-flush > .list-group-item {
  border-width: 0 0 1px;
}
.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: rgb(25.48, 80.08, 105.56);
  background-color: rgb(197.32, 226.72, 240.44);
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: rgb(25.48, 80.08, 105.56);
  background-color: rgb(176.9595348837, 216.7374418605, 235.3004651163);
}
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: rgb(25.48, 80.08, 105.56);
  border-color: rgb(25.48, 80.08, 105.56);
}

.list-group-item-secondary {
  color: rgb(42.12, 20.28, 85.28);
  background-color: rgb(206.28, 194.52, 229.52);
}
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: rgb(42.12, 20.28, 85.28);
  background-color: rgb(191.8272312704, 176.5786319218, 221.9613680782);
}
.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: rgb(42.12, 20.28, 85.28);
  border-color: rgb(42.12, 20.28, 85.28);
}

.list-group-item-success {
  color: rgb(75.92, 99.84, 71.24);
  background-color: rgb(224.48, 237.36, 221.96);
}
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: rgb(75.92, 99.84, 71.24);
  background-color: rgb(209.1236464088, 228.4843093923, 205.3356906077);
}
.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: rgb(75.92, 99.84, 71.24);
  border-color: rgb(75.92, 99.84, 71.24);
}

.list-group-item-info {
  color: rgb(11.96, 84.24, 95.68);
  background-color: rgb(190.04, 228.96, 235.12);
}
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: rgb(11.96, 84.24, 95.68);
  background-color: rgb(170.5152475248, 221.1332673267, 229.1447524752);
}
.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: rgb(11.96, 84.24, 95.68);
  border-color: rgb(11.96, 84.24, 95.68);
}

.list-group-item-warning {
  color: rgb(121.16, 101.92, 11.96);
  background-color: rgb(248.84, 238.48, 190.04);
}
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: rgb(121.16, 101.92, 11.96);
  background-color: rgb(246.6313385827, 232.5567716535, 166.7486614173);
}
.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: rgb(121.16, 101.92, 11.96);
  border-color: rgb(121.16, 101.92, 11.96);
}

.list-group-item-danger {
  color: rgb(118.04, 59.28, 59.28);
  background-color: rgb(247.16, 215.52, 215.52);
}
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: rgb(118.04, 59.28, 59.28);
  background-color: rgb(242.935147929, 194.244852071, 194.244852071);
}
.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: rgb(118.04, 59.28, 59.28);
  border-color: rgb(118.04, 59.28, 59.28);
}

.list-group-item-light {
  color: rgb(128.96, 129.48, 130);
  background-color: rgb(253.04, 253.32, 253.6);
}
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: rgb(128.96, 129.48, 130);
  background-color: rgb(238.165, 240.57, 242.975);
}
.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: rgb(128.96, 129.48, 130);
  border-color: rgb(128.96, 129.48, 130);
}

.list-group-item-dark {
  color: rgb(27.04, 30.16, 33.28);
  background-color: rgb(198.16, 199.84, 201.52);
}
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: rgb(27.04, 30.16, 33.28);
  background-color: rgb(185.0216751269, 187.09, 189.1583248731);
}
.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: rgb(27.04, 30.16, 33.28);
  border-color: rgb(27.04, 30.16, 33.28);
}

.close {
  float: right;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}
.close:hover {
  color: #000;
  text-decoration: none;
}
.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
  opacity: 0.75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
}

a.close.disabled {
  pointer-events: none;
}

.toast {
  flex-basis: 350px;
  max-width: 350px;
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  opacity: 0;
  border-radius: 0.25rem;
}
.toast:not(:last-child) {
  margin-bottom: 0.75rem;
}
.toast.showing {
  opacity: 1;
}
.toast.show {
  display: block;
  opacity: 1;
}
.toast.hide {
  display: none;
}

.toast-header {
  display: flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  color: #6c757d;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.toast-body {
  padding: 0.75rem;
}

.modal-open {
  overflow: hidden;
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11000;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  display: flex;
  max-height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}
.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  flex-shrink: 0;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}
.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  height: min-content;
  content: "";
}
.modal-dialog-centered.modal-dialog-scrollable {
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}
.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1071;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
  margin: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 767px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
    height: min-content;
  }
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 1200px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1920px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: "NotoKufiArabic-Regular", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.65625rem;
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: 0.9;
}
.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}
.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[x-placement^=top] {
  padding: 0.4rem 0;
}
.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^=top] .arrow {
  bottom: 0;
}
.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^=top] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.bs-tooltip-right, .bs-tooltip-auto[x-placement^=right] {
  padding: 0 0.4rem;
}
.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^=right] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^=right] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^=bottom] {
  padding: 0.4rem 0;
}
.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^=bottom] .arrow {
  top: 0;
}
.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.bs-tooltip-left, .bs-tooltip-auto[x-placement^=left] {
  padding: 0 0.4rem;
}
.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^=left] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^=left] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: "NotoKufiArabic-Regular", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.65625rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}
.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
  margin: 0 0.3rem;
}
.popover .arrow::before, .popover .arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top, .bs-popover-auto[x-placement^=top] {
  margin-bottom: 0.5rem;
}
.bs-popover-top > .arrow, .bs-popover-auto[x-placement^=top] > .arrow {
  bottom: calc(-0.5rem - 1px);
}
.bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^=top] > .arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^=top] > .arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}

.bs-popover-right, .bs-popover-auto[x-placement^=right] {
  margin-left: 0.5rem;
}
.bs-popover-right > .arrow, .bs-popover-auto[x-placement^=right] > .arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}
.bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^=right] > .arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^=right] > .arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #fff;
}

.bs-popover-bottom, .bs-popover-auto[x-placement^=bottom] {
  margin-top: 0.5rem;
}
.bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^=bottom] > .arrow {
  top: calc(-0.5rem - 1px);
}
.bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^=bottom] > .arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^=bottom] > .arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #fff;
}
.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid rgb(247.35, 247.35, 247.35);
}

.bs-popover-left, .bs-popover-auto[x-placement^=left] {
  margin-right: 0.5rem;
}
.bs-popover-left > .arrow, .bs-popover-auto[x-placement^=left] > .arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}
.bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^=left] > .arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^=left] > .arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 0.75rem;
  background-color: rgb(247.35, 247.35, 247.35);
  border-bottom: 1px solid rgb(234.6, 234.6, 234.6);
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 0.5rem 0.75rem;
  color: #212529;
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
  transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  z-index: 1;
  opacity: 1;
}
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-right {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    transition: none;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: no-repeat 50%/100% 100%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}
.carousel-indicators li {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators li {
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}
.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spinner-border 0.75s linear infinite;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}
.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  animation: spinner-grow 0.75s linear infinite;
}

.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #319ACB !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: rgb(39.0833333333, 122.8333333333, 161.9166666667) !important;
}

.bg-secondary {
  background-color: #5127A4 !important;
}

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: rgb(60.6502463054, 29.2019704433, 122.7980295567) !important;
}

.bg-success {
  background-color: #92C089 !important;
}

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: rgb(115.2872928177, 174.2486187845, 103.7513812155) !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: rgb(17.3333333333, 122.0869565217, 138.6666666667) !important;
}

.bg-warning {
  background-color: #E9C417 !important;
}

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: rgb(187.2440944882, 157.3818897638, 17.7559055118) !important;
}

.bg-danger {
  background-color: #E37272 !important;
}

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: rgb(218.550295858, 71.449704142, 71.449704142) !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: rgb(218.25, 223.5, 228.75) !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: rgb(29.1379310345, 32.5, 35.8620689655) !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #319ACB !important;
}

.border-secondary {
  border-color: #5127A4 !important;
}

.border-success {
  border-color: #92C089 !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #E9C417 !important;
}

.border-danger {
  border-color: #E37272 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded-sm {
  border-radius: 0.2rem !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-lg {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 767px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1920px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
}
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.embed-responsive::before {
  display: block;
  content: "";
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.8571428571%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 767px) {
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1920px) {
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}
.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media (min-width: 767px) {
  .float-sm-left {
    float: left !important;
  }
  .float-sm-right {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
}
@media (min-width: 992px) {
  .float-md-left {
    float: left !important;
  }
  .float-md-right {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
}
@media (min-width: 1200px) {
  .float-lg-left {
    float: left !important;
  }
  .float-lg-right {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
}
@media (min-width: 1920px) {
  .float-xl-left {
    float: left !important;
  }
  .float-xl-right {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
}
.user-select-all {
  user-select: all !important;
}

.user-select-auto {
  user-select: auto !important;
}

.user-select-none {
  user-select: none !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports (position: sticky) {
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 767px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .m-sm-n3 {
    margin: -1rem !important;
  }
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .m-sm-n5 {
    margin: -3rem !important;
  }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important;
  }
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important;
  }
  .m-md-n3 {
    margin: -1rem !important;
  }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }
  .m-md-n5 {
    margin: -3rem !important;
  }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .m-lg-n3 {
    margin: -1rem !important;
  }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .m-lg-n5 {
    margin: -3rem !important;
  }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1920px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xl-n3 {
    margin: -1rem !important;
  }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xl-n5 {
    margin: -3rem !important;
  }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}
.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media (min-width: 767px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1920px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #319ACB !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: rgb(34.125, 107.25, 141.375) !important;
}

.text-secondary {
  color: #5127A4 !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: rgb(50.4753694581, 24.302955665, 102.197044335) !important;
}

.text-success {
  color: #92C089 !important;
}

a.text-success:hover, a.text-success:focus {
  color: rgb(100.4419889503, 164.6132596685, 87.8867403315) !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover, a.text-info:focus {
  color: rgb(14.5, 102.1304347826, 116) !important;
}

.text-warning {
  color: #E9C417 !important;
}

a.text-warning:hover, a.text-warning:focus {
  color: rgb(163.9527559055, 137.8051181102, 15.5472440945) !important;
}

.text-danger {
  color: #E37272 !important;
}

a.text-danger:hover, a.text-danger:focus {
  color: rgb(214.325443787, 50.174556213, 50.174556213) !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:hover, a.text-light:focus {
  color: rgb(203.375, 210.75, 218.125) !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: rgb(17.7068965517, 19.75, 21.7931034483) !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-break: break-word !important;
  word-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }
  a:not(.btn) {
    text-decoration: underline;
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  @page {
    size: a3;
  }
  body {
    min-width: 1200px !important;
  }
  .container {
    min-width: 1200px !important;
  }
  .navbar {
    display: none;
  }
  .badge {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6 !important;
  }
  .table-dark {
    color: inherit;
  }
  .table-dark th,
  .table-dark td,
  .table-dark thead th,
  .table-dark tbody + tbody {
    border-color: #dee2e6;
  }
  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}
/** Navbar Top **/
.navbar.bg-light {
  height: 64px;
  font-size: 14px;
  padding: 0;
  z-index: 900 !important;
  box-shadow: none;
}
.theme-integra .navbar.bg-light {
  background-color: #ffffff !important;
  border-bottom: 1px solid #d5d5d5;
}
.theme-integra-dark .navbar.bg-light {
  background-color: #444e54 !important;
  border-bottom: 1px solid #31383c;
}
.navbar.bg-light .navbar-brand {
  position: absolute;
  height: 100%;
  width: 64px;
}
.theme-integra .navbar.bg-light .navbar-brand {
  background-color: #319acb;
}
.theme-integra-dark .navbar.bg-light .navbar-brand {
  background-color: #319acb;
}
.navbar.bg-light .navbar-brand #menu-img {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 25px;
  height: 100%;
  margin: 0 auto;
}
.navbar.bg-light .navbar-collapse {
  height: 64px;
  flex-basis: initial;
}
.navbar.bg-light .navbar-collapse .idrica-brand {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  top: 0;
}
@media (max-width: 991.98px) {
  .navbar.bg-light .navbar-collapse .idrica-brand {
    width: 88%;
  }
}
.navbar.bg-light .navbar-collapse .idrica-brand img {
  height: 100%;
}
@media (max-width: 991.98px) {
  .navbar.bg-light .navbar-collapse .idrica-brand img {
    height: 80%;
    margin-top: 6px;
  }
}
.navbar.bg-light .navbar-collapse ul.navbar-nav {
  height: 64px;
  flex-direction: row;
  justify-content: flex-end;
}
.navbar.bg-light .navbar-collapse ul.navbar-nav .nav-item {
  margin: 0 0.5em;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}
@media (max-width: 1199.98px) {
  .navbar.bg-light .navbar-collapse ul.navbar-nav .nav-item {
    margin: 0 1.14285714em;
  }
}
.theme-integra .navbar.bg-light .navbar-collapse ul.navbar-nav .nav-item .nav-link {
  color: #5c5c5c;
}
.theme-integra-dark .navbar.bg-light .navbar-collapse ul.navbar-nav .nav-item .nav-link {
  color: #fafafa;
}
.theme-integra .navbar.bg-light .navbar-collapse ul.navbar-nav .nav-item .nav-link:hover, .theme-integra .navbar.bg-light .navbar-collapse ul.navbar-nav .nav-item .nav-link:focus, .theme-integra .navbar.bg-light .navbar-collapse ul.navbar-nav .nav-item .nav-link.active {
  color: #5c5c5c;
}
.theme-integra-dark .navbar.bg-light .navbar-collapse ul.navbar-nav .nav-item .nav-link:hover, .theme-integra-dark .navbar.bg-light .navbar-collapse ul.navbar-nav .nav-item .nav-link:focus, .theme-integra-dark .navbar.bg-light .navbar-collapse ul.navbar-nav .nav-item .nav-link.active {
  color: #fafafa;
}
@media (min-width: 767px) and (max-width: 1199.98px) {
  .navbar.bg-light .navbar-collapse ul.navbar-nav .nav-item.dropdown span {
    margin-right: 0.5rem;
  }
}
.navbar.bg-light .navbar-collapse ul.navbar-nav .nav-item.dropdown a.dropdown-toggle::after {
  display: none;
}
.navbar.bg-light .navbar-collapse ul.navbar-nav .nav-item.dropdown .dropdown-menu {
  cursor: auto;
  position: absolute;
  outline: none;
  top: 100%;
  right: 10%;
  margin: 0em;
  padding: 0em 0em;
  font-size: 1rem;
  text-shadow: none;
  text-align: left;
  border-radius: 0;
  transition: opacity 0.1s ease;
  z-index: 11;
  will-change: transform, opacity;
  min-width: inherit;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  border: none;
}
.theme-integra .navbar.bg-light .navbar-collapse ul.navbar-nav .nav-item.dropdown .dropdown-menu {
  background: #ffffff;
}
.theme-integra-dark .navbar.bg-light .navbar-collapse ul.navbar-nav .nav-item.dropdown .dropdown-menu {
  background: #444e54;
}
.navbar.bg-light .navbar-collapse ul.navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item,
.navbar.bg-light .navbar-collapse ul.navbar-nav .nav-item.dropdown .dropdown-menu div {
  font-size: 14px;
  padding: 0.25rem 1rem;
}
.theme-integra .navbar.bg-light .navbar-collapse ul.navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item,
.theme-integra .navbar.bg-light .navbar-collapse ul.navbar-nav .nav-item.dropdown .dropdown-menu div {
  color: #5c5c5c;
}
.theme-integra-dark .navbar.bg-light .navbar-collapse ul.navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item,
.theme-integra-dark .navbar.bg-light .navbar-collapse ul.navbar-nav .nav-item.dropdown .dropdown-menu div {
  color: #fafafa;
}
.theme-integra .navbar.bg-light .navbar-collapse ul.navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:hover, .theme-integra .navbar.bg-light .navbar-collapse ul.navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:focus, .theme-integra .navbar.bg-light .navbar-collapse ul.navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item.active,
.theme-integra .navbar.bg-light .navbar-collapse ul.navbar-nav .nav-item.dropdown .dropdown-menu div:hover,
.theme-integra .navbar.bg-light .navbar-collapse ul.navbar-nav .nav-item.dropdown .dropdown-menu div:focus,
.theme-integra .navbar.bg-light .navbar-collapse ul.navbar-nav .nav-item.dropdown .dropdown-menu div.active {
  color: #5c5c5c;
  background-color: #f7f7f7;
}
.theme-integra-dark .navbar.bg-light .navbar-collapse ul.navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:hover, .theme-integra-dark .navbar.bg-light .navbar-collapse ul.navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:focus, .theme-integra-dark .navbar.bg-light .navbar-collapse ul.navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item.active,
.theme-integra-dark .navbar.bg-light .navbar-collapse ul.navbar-nav .nav-item.dropdown .dropdown-menu div:hover,
.theme-integra-dark .navbar.bg-light .navbar-collapse ul.navbar-nav .nav-item.dropdown .dropdown-menu div:focus,
.theme-integra-dark .navbar.bg-light .navbar-collapse ul.navbar-nav .nav-item.dropdown .dropdown-menu div.active {
  color: #fafafa;
  background-color: #3f484d;
}
.navbar.bg-light .navbar-collapse ul.navbar-nav #support .dropdown-menu {
  min-width: max-content;
}

.avatar {
  border-radius: 50px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.theme-integra .avatar {
  background-color: #f3f3f3;
  color: #5c5c5c;
}
.theme-integra-dark .avatar {
  background-color: #373f44;
  color: #fafafa;
}
@media (max-width: 991.98px) {
  .avatar {
    margin-right: 1rem;
  }
}
@media (max-width: 766.98px) {
  .avatar {
    margin-right: 1rem;
  }
}

#btnGoToPortal {
  padding: 0.5rem !important;
  min-width: auto !important;
  text-transform: none !important;
}

/** Navbar Left **/
#navbarLeft,
#navbarLeft.closed {
  max-width: 64px;
  min-width: 64px;
  height: 100vh;
  transform: translate3d(0%, 0%, 0);
  visibility: visible;
  transition: all 0.3s ease 0.1s;
  z-index: 1000;
  position: fixed;
  top: 0;
  box-shadow: none;
}
.theme-integra #navbarLeft,
.theme-integra #navbarLeft.closed {
  color: #5c5c5c;
  background: #ffffff;
  border-right: 1px solid #d5d5d5;
}
.theme-integra-dark #navbarLeft,
.theme-integra-dark #navbarLeft.closed {
  color: #fafafa;
  background: #444e54;
  border-right: 1px solid #31383c;
}
#navbarLeft .btnHome,
#navbarLeft.closed .btnHome {
  width: 100%;
  height: 64px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  cursor: pointer;
  background: #319ACB;
}
#navbarLeft .btnHome .brand-img,
#navbarLeft.closed .btnHome .brand-img {
  margin: 0 auto;
  width: 25px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
#navbarLeft .btnMenu,
#navbarLeft.closed .btnMenu {
  margin-top: 3em;
}
#navbarLeft .btnMenu .dropdown-header,
#navbarLeft.closed .btnMenu .dropdown-header {
  padding: 0.5rem 1.2rem;
}
.theme-integra #navbarLeft .btnMenu .dropdown-header,
.theme-integra #navbarLeft.closed .btnMenu .dropdown-header {
  color: #5c5c5c;
  background-color: black;
}
.theme-integra-dark #navbarLeft .btnMenu .dropdown-header,
.theme-integra-dark #navbarLeft.closed .btnMenu .dropdown-header {
  color: #fafafa;
  background-color: black;
}
#navbarLeft .btnApp,
#navbarLeft.closed .btnApp {
  position: absolute;
  bottom: 6rem;
  width: 100%;
}
#navbarLeft .btnApp .dropdown-item,
#navbarLeft.closed .btnApp .dropdown-item {
  padding: 0 !important;
}
#navbarLeft .btnApp .appBlock,
#navbarLeft.closed .btnApp .appBlock {
  padding: 0.25rem 0.5rem;
  display: inline-flex;
  flex: 0 1 auto;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
.theme-integra #navbarLeft .btnApp .appBlock,
.theme-integra #navbarLeft.closed .btnApp .appBlock {
  color: #5c5c5c;
}
.theme-integra-dark #navbarLeft .btnApp .appBlock,
.theme-integra-dark #navbarLeft.closed .btnApp .appBlock {
  color: #fafafa;
}
.theme-integra #navbarLeft .btnApp .appBlock:hover,
.theme-integra #navbarLeft.closed .btnApp .appBlock:hover {
  color: #5c5c5c;
}
.theme-integra-dark #navbarLeft .btnApp .appBlock:hover,
.theme-integra-dark #navbarLeft.closed .btnApp .appBlock:hover {
  color: #fafafa;
}
#navbarLeft .btnApp .appBlock .appIcon,
#navbarLeft.closed .btnApp .appBlock .appIcon {
  padding-bottom: 0.5rem;
}
#navbarLeft .btnMenu .dropright,
#navbarLeft .btnApp .dropright,
#navbarLeft .btnTools .dropright, #navbarLeft .btnDownloadMenu .dropright,
#navbarLeft.closed .btnMenu .dropright,
#navbarLeft.closed .btnApp .dropright,
#navbarLeft.closed .btnTools .dropright,
#navbarLeft.closed .btnDownloadMenu .dropright {
  padding: 0;
  display: flex;
  align-items: center;
  max-height: 52px;
  position: relative;
}
#navbarLeft .btnMenu .dropright a,
#navbarLeft .btnApp .dropright a,
#navbarLeft .btnTools .dropright a, #navbarLeft .btnDownloadMenu .dropright a,
#navbarLeft.closed .btnMenu .dropright a,
#navbarLeft.closed .btnApp .dropright a,
#navbarLeft.closed .btnTools .dropright a,
#navbarLeft.closed .btnDownloadMenu .dropright a {
  width: 100%;
  padding: 0.4em 0;
  max-height: 52px;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
}
.theme-integra #navbarLeft .btnMenu .dropright a,
.theme-integra #navbarLeft .btnApp .dropright a,
.theme-integra #navbarLeft .btnTools .dropright a, .theme-integra #navbarLeft .btnDownloadMenu .dropright a,
.theme-integra #navbarLeft.closed .btnMenu .dropright a,
.theme-integra #navbarLeft.closed .btnApp .dropright a,
.theme-integra #navbarLeft.closed .btnTools .dropright a,
.theme-integra #navbarLeft.closed .btnDownloadMenu .dropright a {
  color: #5c5c5c;
}
.theme-integra-dark #navbarLeft .btnMenu .dropright a,
.theme-integra-dark #navbarLeft .btnApp .dropright a,
.theme-integra-dark #navbarLeft .btnTools .dropright a, .theme-integra-dark #navbarLeft .btnDownloadMenu .dropright a,
.theme-integra-dark #navbarLeft.closed .btnMenu .dropright a,
.theme-integra-dark #navbarLeft.closed .btnApp .dropright a,
.theme-integra-dark #navbarLeft.closed .btnTools .dropright a,
.theme-integra-dark #navbarLeft.closed .btnDownloadMenu .dropright a {
  color: #fafafa;
}
#navbarLeft .btnMenu .dropright a span.fa-stack,
#navbarLeft .btnApp .dropright a span.fa-stack,
#navbarLeft .btnTools .dropright a span.fa-stack, #navbarLeft .btnDownloadMenu .dropright a span.fa-stack,
#navbarLeft.closed .btnMenu .dropright a span.fa-stack,
#navbarLeft.closed .btnApp .dropright a span.fa-stack,
#navbarLeft.closed .btnTools .dropright a span.fa-stack,
#navbarLeft.closed .btnDownloadMenu .dropright a span.fa-stack {
  width: 44px;
  height: 44px;
  margin: 0 0.5rem;
  visibility: visible;
}
#navbarLeft .btnMenu .dropright a span.fa-stack svg.fa-circle,
#navbarLeft .btnApp .dropright a span.fa-stack svg.fa-circle,
#navbarLeft .btnTools .dropright a span.fa-stack svg.fa-circle, #navbarLeft .btnDownloadMenu .dropright a span.fa-stack svg.fa-circle,
#navbarLeft.closed .btnMenu .dropright a span.fa-stack svg.fa-circle,
#navbarLeft.closed .btnApp .dropright a span.fa-stack svg.fa-circle,
#navbarLeft.closed .btnTools .dropright a span.fa-stack svg.fa-circle,
#navbarLeft.closed .btnDownloadMenu .dropright a span.fa-stack svg.fa-circle {
  height: 44px;
  width: 44px;
  visibility: hidden;
}
.theme-integra #navbarLeft .btnMenu .dropright a span.fa-stack svg.fa-circle,
.theme-integra #navbarLeft .btnApp .dropright a span.fa-stack svg.fa-circle,
.theme-integra #navbarLeft .btnTools .dropright a span.fa-stack svg.fa-circle, .theme-integra #navbarLeft .btnDownloadMenu .dropright a span.fa-stack svg.fa-circle,
.theme-integra #navbarLeft.closed .btnMenu .dropright a span.fa-stack svg.fa-circle,
.theme-integra #navbarLeft.closed .btnApp .dropright a span.fa-stack svg.fa-circle,
.theme-integra #navbarLeft.closed .btnTools .dropright a span.fa-stack svg.fa-circle,
.theme-integra #navbarLeft.closed .btnDownloadMenu .dropright a span.fa-stack svg.fa-circle {
  color: #319acb;
}
.theme-integra-dark #navbarLeft .btnMenu .dropright a span.fa-stack svg.fa-circle,
.theme-integra-dark #navbarLeft .btnApp .dropright a span.fa-stack svg.fa-circle,
.theme-integra-dark #navbarLeft .btnTools .dropright a span.fa-stack svg.fa-circle, .theme-integra-dark #navbarLeft .btnDownloadMenu .dropright a span.fa-stack svg.fa-circle,
.theme-integra-dark #navbarLeft.closed .btnMenu .dropright a span.fa-stack svg.fa-circle,
.theme-integra-dark #navbarLeft.closed .btnApp .dropright a span.fa-stack svg.fa-circle,
.theme-integra-dark #navbarLeft.closed .btnTools .dropright a span.fa-stack svg.fa-circle,
.theme-integra-dark #navbarLeft.closed .btnDownloadMenu .dropright a span.fa-stack svg.fa-circle {
  color: #319acb;
}
#navbarLeft .btnMenu .dropright a span,
#navbarLeft .btnApp .dropright a span,
#navbarLeft .btnTools .dropright a span, #navbarLeft .btnDownloadMenu .dropright a span,
#navbarLeft.closed .btnMenu .dropright a span,
#navbarLeft.closed .btnApp .dropright a span,
#navbarLeft.closed .btnTools .dropright a span,
#navbarLeft.closed .btnDownloadMenu .dropright a span {
  visibility: hidden;
  width: 100%;
}
#navbarLeft .btnMenu .dropright a span svg.fa-stack-1x,
#navbarLeft .btnApp .dropright a span svg.fa-stack-1x,
#navbarLeft .btnTools .dropright a span svg.fa-stack-1x, #navbarLeft .btnDownloadMenu .dropright a span svg.fa-stack-1x,
#navbarLeft.closed .btnMenu .dropright a span svg.fa-stack-1x,
#navbarLeft.closed .btnApp .dropright a span svg.fa-stack-1x,
#navbarLeft.closed .btnTools .dropright a span svg.fa-stack-1x,
#navbarLeft.closed .btnDownloadMenu .dropright a span svg.fa-stack-1x {
  font-size: 18px;
}
#navbarLeft .btnMenu .dropright a span.menuText,
#navbarLeft .btnApp .dropright a span.menuText,
#navbarLeft .btnTools .dropright a span.menuText, #navbarLeft .btnDownloadMenu .dropright a span.menuText,
#navbarLeft.closed .btnMenu .dropright a span.menuText,
#navbarLeft.closed .btnApp .dropright a span.menuText,
#navbarLeft.closed .btnTools .dropright a span.menuText,
#navbarLeft.closed .btnDownloadMenu .dropright a span.menuText {
  display: none;
  transform: scale(0);
  opacity: 0;
  transition: transform 0.5s linear, opacity 0.5s linear;
}
#navbarLeft .btnMenu .dropright a .chevron svg,
#navbarLeft .btnApp .dropright a .chevron svg,
#navbarLeft .btnTools .dropright a .chevron svg, #navbarLeft .btnDownloadMenu .dropright a .chevron svg,
#navbarLeft.closed .btnMenu .dropright a .chevron svg,
#navbarLeft.closed .btnApp .dropright a .chevron svg,
#navbarLeft.closed .btnTools .dropright a .chevron svg,
#navbarLeft.closed .btnDownloadMenu .dropright a .chevron svg {
  visibility: hidden;
  margin-right: 0;
}
#navbarLeft .btnMenu .dropright a:hover,
#navbarLeft .btnApp .dropright a:hover,
#navbarLeft .btnTools .dropright a:hover, #navbarLeft .btnDownloadMenu .dropright a:hover,
#navbarLeft.closed .btnMenu .dropright a:hover,
#navbarLeft.closed .btnApp .dropright a:hover,
#navbarLeft.closed .btnTools .dropright a:hover,
#navbarLeft.closed .btnDownloadMenu .dropright a:hover {
  color: white;
}
#navbarLeft .btnMenu .dropright a:hover svg.fa-circle,
#navbarLeft .btnApp .dropright a:hover svg.fa-circle,
#navbarLeft .btnTools .dropright a:hover svg.fa-circle, #navbarLeft .btnDownloadMenu .dropright a:hover svg.fa-circle,
#navbarLeft.closed .btnMenu .dropright a:hover svg.fa-circle,
#navbarLeft.closed .btnApp .dropright a:hover svg.fa-circle,
#navbarLeft.closed .btnTools .dropright a:hover svg.fa-circle,
#navbarLeft.closed .btnDownloadMenu .dropright a:hover svg.fa-circle {
  visibility: visible !important;
}
#navbarLeft .btnMenu .dropright .jsr_button_viewAlarms-notificacion,
#navbarLeft .btnApp .dropright .jsr_button_viewAlarms-notificacion,
#navbarLeft .btnTools .dropright .jsr_button_viewAlarms-notificacion, #navbarLeft .btnDownloadMenu .dropright .jsr_button_viewAlarms-notificacion,
#navbarLeft.closed .btnMenu .dropright .jsr_button_viewAlarms-notificacion,
#navbarLeft.closed .btnApp .dropright .jsr_button_viewAlarms-notificacion,
#navbarLeft.closed .btnTools .dropright .jsr_button_viewAlarms-notificacion,
#navbarLeft.closed .btnDownloadMenu .dropright .jsr_button_viewAlarms-notificacion {
  display: inline;
  visibility: visible;
  right: 0px;
  position: absolute;
  width: auto;
  top: 4px;
}
#navbarLeft .btnMenu .dropright a.dropdown-toggle::after,
#navbarLeft .btnApp .dropright a.dropdown-toggle::after,
#navbarLeft .btnTools .dropright a.dropdown-toggle::after, #navbarLeft .btnDownloadMenu .dropright a.dropdown-toggle::after,
#navbarLeft.closed .btnMenu .dropright a.dropdown-toggle::after,
#navbarLeft.closed .btnApp .dropright a.dropdown-toggle::after,
#navbarLeft.closed .btnTools .dropright a.dropdown-toggle::after,
#navbarLeft.closed .btnDownloadMenu .dropright a.dropdown-toggle::after {
  display: none;
}
#navbarLeft .btnMenu .dropright .dropdown-menu,
#navbarLeft .btnApp .dropright .dropdown-menu,
#navbarLeft .btnTools .dropright .dropdown-menu, #navbarLeft .btnDownloadMenu .dropright .dropdown-menu,
#navbarLeft.closed .btnMenu .dropright .dropdown-menu,
#navbarLeft.closed .btnApp .dropright .dropdown-menu,
#navbarLeft.closed .btnTools .dropright .dropdown-menu,
#navbarLeft.closed .btnDownloadMenu .dropright .dropdown-menu {
  margin-left: 0;
  border-radius: 0;
  padding: 0;
  min-width: inherit;
  transform: none !important;
  left: 58px !important;
  border: none;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}
.theme-integra #navbarLeft .btnMenu .dropright .dropdown-menu,
.theme-integra #navbarLeft .btnApp .dropright .dropdown-menu,
.theme-integra #navbarLeft .btnTools .dropright .dropdown-menu, .theme-integra #navbarLeft .btnDownloadMenu .dropright .dropdown-menu,
.theme-integra #navbarLeft.closed .btnMenu .dropright .dropdown-menu,
.theme-integra #navbarLeft.closed .btnApp .dropright .dropdown-menu,
.theme-integra #navbarLeft.closed .btnTools .dropright .dropdown-menu,
.theme-integra #navbarLeft.closed .btnDownloadMenu .dropright .dropdown-menu {
  background: #ffffff;
}
.theme-integra-dark #navbarLeft .btnMenu .dropright .dropdown-menu,
.theme-integra-dark #navbarLeft .btnApp .dropright .dropdown-menu,
.theme-integra-dark #navbarLeft .btnTools .dropright .dropdown-menu, .theme-integra-dark #navbarLeft .btnDownloadMenu .dropright .dropdown-menu,
.theme-integra-dark #navbarLeft.closed .btnMenu .dropright .dropdown-menu,
.theme-integra-dark #navbarLeft.closed .btnApp .dropright .dropdown-menu,
.theme-integra-dark #navbarLeft.closed .btnTools .dropright .dropdown-menu,
.theme-integra-dark #navbarLeft.closed .btnDownloadMenu .dropright .dropdown-menu {
  background: #444e54;
}
#navbarLeft .btnMenu .dropright .dropdown-menu a,
#navbarLeft .btnApp .dropright .dropdown-menu a,
#navbarLeft .btnTools .dropright .dropdown-menu a, #navbarLeft .btnDownloadMenu .dropright .dropdown-menu a,
#navbarLeft.closed .btnMenu .dropright .dropdown-menu a,
#navbarLeft.closed .btnApp .dropright .dropdown-menu a,
#navbarLeft.closed .btnTools .dropright .dropdown-menu a,
#navbarLeft.closed .btnDownloadMenu .dropright .dropdown-menu a {
  padding: 0.6667em 0.7em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#navbarLeft .btnMenu .dropright .dropdown-menu a span,
#navbarLeft .btnApp .dropright .dropdown-menu a span,
#navbarLeft .btnTools .dropright .dropdown-menu a span, #navbarLeft .btnDownloadMenu .dropright .dropdown-menu a span,
#navbarLeft.closed .btnMenu .dropright .dropdown-menu a span,
#navbarLeft.closed .btnApp .dropright .dropdown-menu a span,
#navbarLeft.closed .btnTools .dropright .dropdown-menu a span,
#navbarLeft.closed .btnDownloadMenu .dropright .dropdown-menu a span {
  visibility: visible;
  transition-property: visibility;
  transition-delay: 0.3s;
}
#navbarLeft .btnMenu .dropright .dropdown-menu a span.menuText,
#navbarLeft .btnApp .dropright .dropdown-menu a span.menuText,
#navbarLeft .btnTools .dropright .dropdown-menu a span.menuText, #navbarLeft .btnDownloadMenu .dropright .dropdown-menu a span.menuText,
#navbarLeft.closed .btnMenu .dropright .dropdown-menu a span.menuText,
#navbarLeft.closed .btnApp .dropright .dropdown-menu a span.menuText,
#navbarLeft.closed .btnTools .dropright .dropdown-menu a span.menuText,
#navbarLeft.closed .btnDownloadMenu .dropright .dropdown-menu a span.menuText {
  display: none;
  transform: scale(0);
  opacity: 0;
  transition: transform 0.5s linear, opacity 0.5s linear;
}
#navbarLeft .btnMenu .dropright .dropdown-menu a svg,
#navbarLeft .btnApp .dropright .dropdown-menu a svg,
#navbarLeft .btnTools .dropright .dropdown-menu a svg, #navbarLeft .btnDownloadMenu .dropright .dropdown-menu a svg,
#navbarLeft.closed .btnMenu .dropright .dropdown-menu a svg,
#navbarLeft.closed .btnApp .dropright .dropdown-menu a svg,
#navbarLeft.closed .btnTools .dropright .dropdown-menu a svg,
#navbarLeft.closed .btnDownloadMenu .dropright .dropdown-menu a svg {
  opacity: 1;
}
#navbarLeft .btnMenu .dropright .dropdown-menu a .chevron svg,
#navbarLeft .btnApp .dropright .dropdown-menu a .chevron svg,
#navbarLeft .btnTools .dropright .dropdown-menu a .chevron svg, #navbarLeft .btnDownloadMenu .dropright .dropdown-menu a .chevron svg,
#navbarLeft.closed .btnMenu .dropright .dropdown-menu a .chevron svg,
#navbarLeft.closed .btnApp .dropright .dropdown-menu a .chevron svg,
#navbarLeft.closed .btnTools .dropright .dropdown-menu a .chevron svg,
#navbarLeft.closed .btnDownloadMenu .dropright .dropdown-menu a .chevron svg {
  float: right;
  visibility: visible;
  transition-property: visibility;
  transition-delay: 0.3s;
}
#navbarLeft .btnMenu .dropright .dropdown-menu a.alarmsText,
#navbarLeft .btnApp .dropright .dropdown-menu a.alarmsText,
#navbarLeft .btnTools .dropright .dropdown-menu a.alarmsText, #navbarLeft .btnDownloadMenu .dropright .dropdown-menu a.alarmsText,
#navbarLeft.closed .btnMenu .dropright .dropdown-menu a.alarmsText,
#navbarLeft.closed .btnApp .dropright .dropdown-menu a.alarmsText,
#navbarLeft.closed .btnTools .dropright .dropdown-menu a.alarmsText,
#navbarLeft.closed .btnDownloadMenu .dropright .dropdown-menu a.alarmsText {
  display: inline-block;
  width: auto;
}
#navbarLeft .btnMenu .dropright .dropdown-menu .dropdown-submenu,
#navbarLeft .btnApp .dropright .dropdown-menu .dropdown-submenu,
#navbarLeft .btnTools .dropright .dropdown-menu .dropdown-submenu, #navbarLeft .btnDownloadMenu .dropright .dropdown-menu .dropdown-submenu,
#navbarLeft.closed .btnMenu .dropright .dropdown-menu .dropdown-submenu,
#navbarLeft.closed .btnApp .dropright .dropdown-menu .dropdown-submenu,
#navbarLeft.closed .btnTools .dropright .dropdown-menu .dropdown-submenu,
#navbarLeft.closed .btnDownloadMenu .dropright .dropdown-menu .dropdown-submenu {
  position: relative;
}
#navbarLeft .btnMenu .dropright .dropdown-menu .dropdown-submenu .dropdown-menu,
#navbarLeft .btnApp .dropright .dropdown-menu .dropdown-submenu .dropdown-menu,
#navbarLeft .btnTools .dropright .dropdown-menu .dropdown-submenu .dropdown-menu, #navbarLeft .btnDownloadMenu .dropright .dropdown-menu .dropdown-submenu .dropdown-menu,
#navbarLeft.closed .btnMenu .dropright .dropdown-menu .dropdown-submenu .dropdown-menu,
#navbarLeft.closed .btnApp .dropright .dropdown-menu .dropdown-submenu .dropdown-menu,
#navbarLeft.closed .btnTools .dropright .dropdown-menu .dropdown-submenu .dropdown-menu,
#navbarLeft.closed .btnDownloadMenu .dropright .dropdown-menu .dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100% !important;
  margin-top: 0px;
  margin-left: 0px;
}
#navbarLeft .btnMenu .dropright .dropdown-menu .dropdown-item,
#navbarLeft .btnApp .dropright .dropdown-menu .dropdown-item,
#navbarLeft .btnTools .dropright .dropdown-menu .dropdown-item, #navbarLeft .btnDownloadMenu .dropright .dropdown-menu .dropdown-item,
#navbarLeft.closed .btnMenu .dropright .dropdown-menu .dropdown-item,
#navbarLeft.closed .btnApp .dropright .dropdown-menu .dropdown-item,
#navbarLeft.closed .btnTools .dropright .dropdown-menu .dropdown-item,
#navbarLeft.closed .btnDownloadMenu .dropright .dropdown-menu .dropdown-item {
  padding: 0.25rem 0.5rem;
}
.theme-integra #navbarLeft .btnMenu .dropright .dropdown-menu .dropdown-item:hover,
.theme-integra #navbarLeft .btnMenu .dropright .dropdown-menu .dropdown-item:focus,
.theme-integra #navbarLeft .btnApp .dropright .dropdown-menu .dropdown-item:hover,
.theme-integra #navbarLeft .btnApp .dropright .dropdown-menu .dropdown-item:focus,
.theme-integra #navbarLeft .btnTools .dropright .dropdown-menu .dropdown-item:hover,
.theme-integra #navbarLeft .btnTools .dropright .dropdown-menu .dropdown-item:focus, .theme-integra #navbarLeft .btnDownloadMenu .dropright .dropdown-menu .dropdown-item:hover,
.theme-integra #navbarLeft .btnDownloadMenu .dropright .dropdown-menu .dropdown-item:focus,
.theme-integra #navbarLeft.closed .btnMenu .dropright .dropdown-menu .dropdown-item:hover,
.theme-integra #navbarLeft.closed .btnMenu .dropright .dropdown-menu .dropdown-item:focus,
.theme-integra #navbarLeft.closed .btnApp .dropright .dropdown-menu .dropdown-item:hover,
.theme-integra #navbarLeft.closed .btnApp .dropright .dropdown-menu .dropdown-item:focus,
.theme-integra #navbarLeft.closed .btnTools .dropright .dropdown-menu .dropdown-item:hover,
.theme-integra #navbarLeft.closed .btnTools .dropright .dropdown-menu .dropdown-item:focus,
.theme-integra #navbarLeft.closed .btnDownloadMenu .dropright .dropdown-menu .dropdown-item:hover,
.theme-integra #navbarLeft.closed .btnDownloadMenu .dropright .dropdown-menu .dropdown-item:focus {
  color: #5c5c5c;
  background-color: transparent;
}
.theme-integra-dark #navbarLeft .btnMenu .dropright .dropdown-menu .dropdown-item:hover,
.theme-integra-dark #navbarLeft .btnMenu .dropright .dropdown-menu .dropdown-item:focus,
.theme-integra-dark #navbarLeft .btnApp .dropright .dropdown-menu .dropdown-item:hover,
.theme-integra-dark #navbarLeft .btnApp .dropright .dropdown-menu .dropdown-item:focus,
.theme-integra-dark #navbarLeft .btnTools .dropright .dropdown-menu .dropdown-item:hover,
.theme-integra-dark #navbarLeft .btnTools .dropright .dropdown-menu .dropdown-item:focus, .theme-integra-dark #navbarLeft .btnDownloadMenu .dropright .dropdown-menu .dropdown-item:hover,
.theme-integra-dark #navbarLeft .btnDownloadMenu .dropright .dropdown-menu .dropdown-item:focus,
.theme-integra-dark #navbarLeft.closed .btnMenu .dropright .dropdown-menu .dropdown-item:hover,
.theme-integra-dark #navbarLeft.closed .btnMenu .dropright .dropdown-menu .dropdown-item:focus,
.theme-integra-dark #navbarLeft.closed .btnApp .dropright .dropdown-menu .dropdown-item:hover,
.theme-integra-dark #navbarLeft.closed .btnApp .dropright .dropdown-menu .dropdown-item:focus,
.theme-integra-dark #navbarLeft.closed .btnTools .dropright .dropdown-menu .dropdown-item:hover,
.theme-integra-dark #navbarLeft.closed .btnTools .dropright .dropdown-menu .dropdown-item:focus,
.theme-integra-dark #navbarLeft.closed .btnDownloadMenu .dropright .dropdown-menu .dropdown-item:hover,
.theme-integra-dark #navbarLeft.closed .btnDownloadMenu .dropright .dropdown-menu .dropdown-item:focus {
  color: #fafafa;
  background-color: transparent;
}
.theme-integra #navbarLeft .btnMenu .dropright:hover a, .theme-integra #navbarLeft .btnMenu .dropright.active a,
.theme-integra #navbarLeft .btnApp .dropright:hover a,
.theme-integra #navbarLeft .btnApp .dropright.active a,
.theme-integra #navbarLeft .btnTools .dropright:hover a,
.theme-integra #navbarLeft .btnTools .dropright.active a, .theme-integra #navbarLeft .btnDownloadMenu .dropright:hover a, .theme-integra #navbarLeft .btnDownloadMenu .dropright.active a,
.theme-integra #navbarLeft.closed .btnMenu .dropright:hover a,
.theme-integra #navbarLeft.closed .btnMenu .dropright.active a,
.theme-integra #navbarLeft.closed .btnApp .dropright:hover a,
.theme-integra #navbarLeft.closed .btnApp .dropright.active a,
.theme-integra #navbarLeft.closed .btnTools .dropright:hover a,
.theme-integra #navbarLeft.closed .btnTools .dropright.active a,
.theme-integra #navbarLeft.closed .btnDownloadMenu .dropright:hover a,
.theme-integra #navbarLeft.closed .btnDownloadMenu .dropright.active a {
  color: #5c5c5c;
}
.theme-integra-dark #navbarLeft .btnMenu .dropright:hover a, .theme-integra-dark #navbarLeft .btnMenu .dropright.active a,
.theme-integra-dark #navbarLeft .btnApp .dropright:hover a,
.theme-integra-dark #navbarLeft .btnApp .dropright.active a,
.theme-integra-dark #navbarLeft .btnTools .dropright:hover a,
.theme-integra-dark #navbarLeft .btnTools .dropright.active a, .theme-integra-dark #navbarLeft .btnDownloadMenu .dropright:hover a, .theme-integra-dark #navbarLeft .btnDownloadMenu .dropright.active a,
.theme-integra-dark #navbarLeft.closed .btnMenu .dropright:hover a,
.theme-integra-dark #navbarLeft.closed .btnMenu .dropright.active a,
.theme-integra-dark #navbarLeft.closed .btnApp .dropright:hover a,
.theme-integra-dark #navbarLeft.closed .btnApp .dropright.active a,
.theme-integra-dark #navbarLeft.closed .btnTools .dropright:hover a,
.theme-integra-dark #navbarLeft.closed .btnTools .dropright.active a,
.theme-integra-dark #navbarLeft.closed .btnDownloadMenu .dropright:hover a,
.theme-integra-dark #navbarLeft.closed .btnDownloadMenu .dropright.active a {
  color: #fafafa;
}
.theme-integra #navbarLeft .btnMenu .dropright:hover a:hover, .theme-integra #navbarLeft .btnMenu .dropright:hover a.active, .theme-integra #navbarLeft .btnMenu .dropright.active a:hover, .theme-integra #navbarLeft .btnMenu .dropright.active a.active,
.theme-integra #navbarLeft .btnApp .dropright:hover a:hover,
.theme-integra #navbarLeft .btnApp .dropright:hover a.active,
.theme-integra #navbarLeft .btnApp .dropright.active a:hover,
.theme-integra #navbarLeft .btnApp .dropright.active a.active,
.theme-integra #navbarLeft .btnTools .dropright:hover a:hover,
.theme-integra #navbarLeft .btnTools .dropright:hover a.active,
.theme-integra #navbarLeft .btnTools .dropright.active a:hover,
.theme-integra #navbarLeft .btnTools .dropright.active a.active, .theme-integra #navbarLeft .btnDownloadMenu .dropright:hover a:hover, .theme-integra #navbarLeft .btnDownloadMenu .dropright:hover a.active, .theme-integra #navbarLeft .btnDownloadMenu .dropright.active a:hover, .theme-integra #navbarLeft .btnDownloadMenu .dropright.active a.active,
.theme-integra #navbarLeft.closed .btnMenu .dropright:hover a:hover,
.theme-integra #navbarLeft.closed .btnMenu .dropright:hover a.active,
.theme-integra #navbarLeft.closed .btnMenu .dropright.active a:hover,
.theme-integra #navbarLeft.closed .btnMenu .dropright.active a.active,
.theme-integra #navbarLeft.closed .btnApp .dropright:hover a:hover,
.theme-integra #navbarLeft.closed .btnApp .dropright:hover a.active,
.theme-integra #navbarLeft.closed .btnApp .dropright.active a:hover,
.theme-integra #navbarLeft.closed .btnApp .dropright.active a.active,
.theme-integra #navbarLeft.closed .btnTools .dropright:hover a:hover,
.theme-integra #navbarLeft.closed .btnTools .dropright:hover a.active,
.theme-integra #navbarLeft.closed .btnTools .dropright.active a:hover,
.theme-integra #navbarLeft.closed .btnTools .dropright.active a.active,
.theme-integra #navbarLeft.closed .btnDownloadMenu .dropright:hover a:hover,
.theme-integra #navbarLeft.closed .btnDownloadMenu .dropright:hover a.active,
.theme-integra #navbarLeft.closed .btnDownloadMenu .dropright.active a:hover,
.theme-integra #navbarLeft.closed .btnDownloadMenu .dropright.active a.active {
  color: #5c5c5c;
}
.theme-integra-dark #navbarLeft .btnMenu .dropright:hover a:hover, .theme-integra-dark #navbarLeft .btnMenu .dropright:hover a.active, .theme-integra-dark #navbarLeft .btnMenu .dropright.active a:hover, .theme-integra-dark #navbarLeft .btnMenu .dropright.active a.active,
.theme-integra-dark #navbarLeft .btnApp .dropright:hover a:hover,
.theme-integra-dark #navbarLeft .btnApp .dropright:hover a.active,
.theme-integra-dark #navbarLeft .btnApp .dropright.active a:hover,
.theme-integra-dark #navbarLeft .btnApp .dropright.active a.active,
.theme-integra-dark #navbarLeft .btnTools .dropright:hover a:hover,
.theme-integra-dark #navbarLeft .btnTools .dropright:hover a.active,
.theme-integra-dark #navbarLeft .btnTools .dropright.active a:hover,
.theme-integra-dark #navbarLeft .btnTools .dropright.active a.active, .theme-integra-dark #navbarLeft .btnDownloadMenu .dropright:hover a:hover, .theme-integra-dark #navbarLeft .btnDownloadMenu .dropright:hover a.active, .theme-integra-dark #navbarLeft .btnDownloadMenu .dropright.active a:hover, .theme-integra-dark #navbarLeft .btnDownloadMenu .dropright.active a.active,
.theme-integra-dark #navbarLeft.closed .btnMenu .dropright:hover a:hover,
.theme-integra-dark #navbarLeft.closed .btnMenu .dropright:hover a.active,
.theme-integra-dark #navbarLeft.closed .btnMenu .dropright.active a:hover,
.theme-integra-dark #navbarLeft.closed .btnMenu .dropright.active a.active,
.theme-integra-dark #navbarLeft.closed .btnApp .dropright:hover a:hover,
.theme-integra-dark #navbarLeft.closed .btnApp .dropright:hover a.active,
.theme-integra-dark #navbarLeft.closed .btnApp .dropright.active a:hover,
.theme-integra-dark #navbarLeft.closed .btnApp .dropright.active a.active,
.theme-integra-dark #navbarLeft.closed .btnTools .dropright:hover a:hover,
.theme-integra-dark #navbarLeft.closed .btnTools .dropright:hover a.active,
.theme-integra-dark #navbarLeft.closed .btnTools .dropright.active a:hover,
.theme-integra-dark #navbarLeft.closed .btnTools .dropright.active a.active,
.theme-integra-dark #navbarLeft.closed .btnDownloadMenu .dropright:hover a:hover,
.theme-integra-dark #navbarLeft.closed .btnDownloadMenu .dropright:hover a.active,
.theme-integra-dark #navbarLeft.closed .btnDownloadMenu .dropright.active a:hover,
.theme-integra-dark #navbarLeft.closed .btnDownloadMenu .dropright.active a.active {
  color: #fafafa;
}
#navbarLeft .btnMenu .dropright:hover a .chevron, #navbarLeft .btnMenu .dropright.active a .chevron,
#navbarLeft .btnApp .dropright:hover a .chevron,
#navbarLeft .btnApp .dropright.active a .chevron,
#navbarLeft .btnTools .dropright:hover a .chevron,
#navbarLeft .btnTools .dropright.active a .chevron, #navbarLeft .btnDownloadMenu .dropright:hover a .chevron, #navbarLeft .btnDownloadMenu .dropright.active a .chevron,
#navbarLeft.closed .btnMenu .dropright:hover a .chevron,
#navbarLeft.closed .btnMenu .dropright.active a .chevron,
#navbarLeft.closed .btnApp .dropright:hover a .chevron,
#navbarLeft.closed .btnApp .dropright.active a .chevron,
#navbarLeft.closed .btnTools .dropright:hover a .chevron,
#navbarLeft.closed .btnTools .dropright.active a .chevron,
#navbarLeft.closed .btnDownloadMenu .dropright:hover a .chevron,
#navbarLeft.closed .btnDownloadMenu .dropright.active a .chevron {
  padding-top: 0.1rem;
  padding-left: 1rem;
}
#navbarLeft .btnMenu .dropright:hover a svg.fa-circle, #navbarLeft .btnMenu .dropright.active a svg.fa-circle,
#navbarLeft .btnApp .dropright:hover a svg.fa-circle,
#navbarLeft .btnApp .dropright.active a svg.fa-circle,
#navbarLeft .btnTools .dropright:hover a svg.fa-circle,
#navbarLeft .btnTools .dropright.active a svg.fa-circle, #navbarLeft .btnDownloadMenu .dropright:hover a svg.fa-circle, #navbarLeft .btnDownloadMenu .dropright.active a svg.fa-circle,
#navbarLeft.closed .btnMenu .dropright:hover a svg.fa-circle,
#navbarLeft.closed .btnMenu .dropright.active a svg.fa-circle,
#navbarLeft.closed .btnApp .dropright:hover a svg.fa-circle,
#navbarLeft.closed .btnApp .dropright.active a svg.fa-circle,
#navbarLeft.closed .btnTools .dropright:hover a svg.fa-circle,
#navbarLeft.closed .btnTools .dropright.active a svg.fa-circle,
#navbarLeft.closed .btnDownloadMenu .dropright:hover a svg.fa-circle,
#navbarLeft.closed .btnDownloadMenu .dropright.active a svg.fa-circle {
  visibility: visible !important;
}
#navbarLeft .btnMenu .dropright:hover a svg.fa-stack-1x, #navbarLeft .btnMenu .dropright.active a svg.fa-stack-1x,
#navbarLeft .btnApp .dropright:hover a svg.fa-stack-1x,
#navbarLeft .btnApp .dropright.active a svg.fa-stack-1x,
#navbarLeft .btnTools .dropright:hover a svg.fa-stack-1x,
#navbarLeft .btnTools .dropright.active a svg.fa-stack-1x, #navbarLeft .btnDownloadMenu .dropright:hover a svg.fa-stack-1x, #navbarLeft .btnDownloadMenu .dropright.active a svg.fa-stack-1x,
#navbarLeft.closed .btnMenu .dropright:hover a svg.fa-stack-1x,
#navbarLeft.closed .btnMenu .dropright.active a svg.fa-stack-1x,
#navbarLeft.closed .btnApp .dropright:hover a svg.fa-stack-1x,
#navbarLeft.closed .btnApp .dropright.active a svg.fa-stack-1x,
#navbarLeft.closed .btnTools .dropright:hover a svg.fa-stack-1x,
#navbarLeft.closed .btnTools .dropright.active a svg.fa-stack-1x,
#navbarLeft.closed .btnDownloadMenu .dropright:hover a svg.fa-stack-1x,
#navbarLeft.closed .btnDownloadMenu .dropright.active a svg.fa-stack-1x {
  color: white;
}
.theme-integra #navbarLeft .btnMenu .dropright.show a,
.theme-integra #navbarLeft .btnApp .dropright.show a,
.theme-integra #navbarLeft .btnTools .dropright.show a, .theme-integra #navbarLeft .btnDownloadMenu .dropright.show a,
.theme-integra #navbarLeft.closed .btnMenu .dropright.show a,
.theme-integra #navbarLeft.closed .btnApp .dropright.show a,
.theme-integra #navbarLeft.closed .btnTools .dropright.show a,
.theme-integra #navbarLeft.closed .btnDownloadMenu .dropright.show a {
  color: #5c5c5c;
}
.theme-integra-dark #navbarLeft .btnMenu .dropright.show a,
.theme-integra-dark #navbarLeft .btnApp .dropright.show a,
.theme-integra-dark #navbarLeft .btnTools .dropright.show a, .theme-integra-dark #navbarLeft .btnDownloadMenu .dropright.show a,
.theme-integra-dark #navbarLeft.closed .btnMenu .dropright.show a,
.theme-integra-dark #navbarLeft.closed .btnApp .dropright.show a,
.theme-integra-dark #navbarLeft.closed .btnTools .dropright.show a,
.theme-integra-dark #navbarLeft.closed .btnDownloadMenu .dropright.show a {
  color: #fafafa;
}
.theme-integra #navbarLeft .btnMenu .dropright.show .dropdown-menu.show .dropdown-item a,
.theme-integra #navbarLeft .btnApp .dropright.show .dropdown-menu.show .dropdown-item a,
.theme-integra #navbarLeft .btnTools .dropright.show .dropdown-menu.show .dropdown-item a, .theme-integra #navbarLeft .btnDownloadMenu .dropright.show .dropdown-menu.show .dropdown-item a,
.theme-integra #navbarLeft.closed .btnMenu .dropright.show .dropdown-menu.show .dropdown-item a,
.theme-integra #navbarLeft.closed .btnApp .dropright.show .dropdown-menu.show .dropdown-item a,
.theme-integra #navbarLeft.closed .btnTools .dropright.show .dropdown-menu.show .dropdown-item a,
.theme-integra #navbarLeft.closed .btnDownloadMenu .dropright.show .dropdown-menu.show .dropdown-item a {
  color: #5c5c5c;
}
.theme-integra-dark #navbarLeft .btnMenu .dropright.show .dropdown-menu.show .dropdown-item a,
.theme-integra-dark #navbarLeft .btnApp .dropright.show .dropdown-menu.show .dropdown-item a,
.theme-integra-dark #navbarLeft .btnTools .dropright.show .dropdown-menu.show .dropdown-item a, .theme-integra-dark #navbarLeft .btnDownloadMenu .dropright.show .dropdown-menu.show .dropdown-item a,
.theme-integra-dark #navbarLeft.closed .btnMenu .dropright.show .dropdown-menu.show .dropdown-item a,
.theme-integra-dark #navbarLeft.closed .btnApp .dropright.show .dropdown-menu.show .dropdown-item a,
.theme-integra-dark #navbarLeft.closed .btnTools .dropright.show .dropdown-menu.show .dropdown-item a,
.theme-integra-dark #navbarLeft.closed .btnDownloadMenu .dropright.show .dropdown-menu.show .dropdown-item a {
  color: #fafafa;
}
.theme-integra #navbarLeft .btnMenu .dropright.show .dropdown-menu.show .dropdown-item a:hover, .theme-integra #navbarLeft .btnMenu .dropright.show .dropdown-menu.show .dropdown-item a.active,
.theme-integra #navbarLeft .btnApp .dropright.show .dropdown-menu.show .dropdown-item a:hover,
.theme-integra #navbarLeft .btnApp .dropright.show .dropdown-menu.show .dropdown-item a.active,
.theme-integra #navbarLeft .btnTools .dropright.show .dropdown-menu.show .dropdown-item a:hover,
.theme-integra #navbarLeft .btnTools .dropright.show .dropdown-menu.show .dropdown-item a.active, .theme-integra #navbarLeft .btnDownloadMenu .dropright.show .dropdown-menu.show .dropdown-item a:hover, .theme-integra #navbarLeft .btnDownloadMenu .dropright.show .dropdown-menu.show .dropdown-item a.active,
.theme-integra #navbarLeft.closed .btnMenu .dropright.show .dropdown-menu.show .dropdown-item a:hover,
.theme-integra #navbarLeft.closed .btnMenu .dropright.show .dropdown-menu.show .dropdown-item a.active,
.theme-integra #navbarLeft.closed .btnApp .dropright.show .dropdown-menu.show .dropdown-item a:hover,
.theme-integra #navbarLeft.closed .btnApp .dropright.show .dropdown-menu.show .dropdown-item a.active,
.theme-integra #navbarLeft.closed .btnTools .dropright.show .dropdown-menu.show .dropdown-item a:hover,
.theme-integra #navbarLeft.closed .btnTools .dropright.show .dropdown-menu.show .dropdown-item a.active,
.theme-integra #navbarLeft.closed .btnDownloadMenu .dropright.show .dropdown-menu.show .dropdown-item a:hover,
.theme-integra #navbarLeft.closed .btnDownloadMenu .dropright.show .dropdown-menu.show .dropdown-item a.active {
  color: #5c5c5c;
}
.theme-integra-dark #navbarLeft .btnMenu .dropright.show .dropdown-menu.show .dropdown-item a:hover, .theme-integra-dark #navbarLeft .btnMenu .dropright.show .dropdown-menu.show .dropdown-item a.active,
.theme-integra-dark #navbarLeft .btnApp .dropright.show .dropdown-menu.show .dropdown-item a:hover,
.theme-integra-dark #navbarLeft .btnApp .dropright.show .dropdown-menu.show .dropdown-item a.active,
.theme-integra-dark #navbarLeft .btnTools .dropright.show .dropdown-menu.show .dropdown-item a:hover,
.theme-integra-dark #navbarLeft .btnTools .dropright.show .dropdown-menu.show .dropdown-item a.active, .theme-integra-dark #navbarLeft .btnDownloadMenu .dropright.show .dropdown-menu.show .dropdown-item a:hover, .theme-integra-dark #navbarLeft .btnDownloadMenu .dropright.show .dropdown-menu.show .dropdown-item a.active,
.theme-integra-dark #navbarLeft.closed .btnMenu .dropright.show .dropdown-menu.show .dropdown-item a:hover,
.theme-integra-dark #navbarLeft.closed .btnMenu .dropright.show .dropdown-menu.show .dropdown-item a.active,
.theme-integra-dark #navbarLeft.closed .btnApp .dropright.show .dropdown-menu.show .dropdown-item a:hover,
.theme-integra-dark #navbarLeft.closed .btnApp .dropright.show .dropdown-menu.show .dropdown-item a.active,
.theme-integra-dark #navbarLeft.closed .btnTools .dropright.show .dropdown-menu.show .dropdown-item a:hover,
.theme-integra-dark #navbarLeft.closed .btnTools .dropright.show .dropdown-menu.show .dropdown-item a.active,
.theme-integra-dark #navbarLeft.closed .btnDownloadMenu .dropright.show .dropdown-menu.show .dropdown-item a:hover,
.theme-integra-dark #navbarLeft.closed .btnDownloadMenu .dropright.show .dropdown-menu.show .dropdown-item a.active {
  color: #fafafa;
}
#navbarLeft .scadaShortcuts,
#navbarLeft.closed .scadaShortcuts {
  max-height: max(500px, 80vh);
  overflow: auto;
}
#navbarLeft .dropright:hover > .dropdown-menu,
#navbarLeft.closed .dropright:hover > .dropdown-menu {
  display: block;
}
#navbarLeft .dropright > .dropdown-menu > .dropdown-submenu > .dropdown-item > .dropdown-menu,
#navbarLeft.closed .dropright > .dropdown-menu > .dropdown-submenu > .dropdown-item > .dropdown-menu {
  display: none;
}
#navbarLeft .dropright > .dropdown-menu > .dropdown-submenu > .dropdown-item > a > span.chevron > svg,
#navbarLeft.closed .dropright > .dropdown-menu > .dropdown-submenu > .dropdown-item > a > span.chevron > svg {
  transform: rotate(180deg) !important;
}
#navbarLeft .dropright > .dropdown-menu > .dropdown-submenu > .dropdown-item:hover > .dropdown-menu,
#navbarLeft.closed .dropright > .dropdown-menu > .dropdown-submenu > .dropdown-item:hover > .dropdown-menu {
  display: block;
}
#navbarLeft .dropright > .dropdown-menu > .dropdown-submenu > .dropdown-item > .dropdown-menu > .dropdown-submenu > .dropdown-item > .dropdown-menu,
#navbarLeft.closed .dropright > .dropdown-menu > .dropdown-submenu > .dropdown-item > .dropdown-menu > .dropdown-submenu > .dropdown-item > .dropdown-menu {
  display: none;
}
#navbarLeft .dropright > .dropdown-menu > .dropdown-submenu > .dropdown-item > .dropdown-menu > .dropdown-submenu > .dropdown-item > a > span.chevron > svg,
#navbarLeft.closed .dropright > .dropdown-menu > .dropdown-submenu > .dropdown-item > .dropdown-menu > .dropdown-submenu > .dropdown-item > a > span.chevron > svg {
  transform: rotate(180deg) !important;
}
#navbarLeft .dropright > .dropdown-menu > .dropdown-submenu > .dropdown-item > .dropdown-menu > .dropdown-submenu > .dropdown-item:hover > .dropdown-menu,
#navbarLeft.closed .dropright > .dropdown-menu > .dropdown-submenu > .dropdown-item > .dropdown-menu > .dropdown-submenu > .dropdown-item:hover > .dropdown-menu {
  display: block;
}
#navbarLeft .btnControlSidebar,
#navbarLeft.closed .btnControlSidebar {
  bottom: 4em;
  padding-left: 1.7em;
  position: absolute;
  cursor: pointer;
}
@media (max-width: 991.98px) {
  #navbarLeft,
  #navbarLeft.closed {
    display: none !important;
  }
}
@media (max-width: 766.98px) {
  #navbarLeft,
  #navbarLeft.closed {
    display: none !important;
  }
}

#navbarLeft.active {
  max-width: 274px;
  min-width: 274px;
  visibility: visible;
  transform: none;
  transition: all 0.3s ease 0.1s;
  overflow-x: hidden;
  overflow-y: auto;
}
#navbarLeft.active .btnHome .brand-img {
  width: 150px;
  animation-name: colapsarImagen;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-duration: 1s;
}
#navbarLeft.active .btnMenu .dropright,
#navbarLeft.active .btnApp .dropright,
#navbarLeft.active .btnTools .dropright {
  position: relative;
  flex-direction: column;
}
#navbarLeft.active .btnMenu .dropright a.dropdown-toggle::after,
#navbarLeft.active .btnApp .dropright a.dropdown-toggle::after,
#navbarLeft.active .btnTools .dropright a.dropdown-toggle::after {
  display: none;
}
#navbarLeft.active .btnMenu .dropright a span,
#navbarLeft.active .btnApp .dropright a span,
#navbarLeft.active .btnTools .dropright a span {
  visibility: visible;
  transition-property: visibility;
  transition-delay: 0.3s;
}
#navbarLeft.active .btnMenu .dropright a svg,
#navbarLeft.active .btnApp .dropright a svg,
#navbarLeft.active .btnTools .dropright a svg {
  opacity: 1;
}
#navbarLeft.active .btnMenu .dropright a .chevron svg,
#navbarLeft.active .btnApp .dropright a .chevron svg,
#navbarLeft.active .btnTools .dropright a .chevron svg {
  float: right;
  visibility: visible;
  transition-property: visibility;
  transition-delay: 0.3s;
  padding: 0.7rem;
}
#navbarLeft.active .btnMenu .dropright a span.menuText,
#navbarLeft.active .btnApp .dropright a span.menuText,
#navbarLeft.active .btnTools .dropright a span.menuText {
  display: contents;
  transform: scale(1);
  opacity: 1;
  animation: sidebarLeftAnim 0.5s linear;
}
#navbarLeft.active .btnMenu .dropright a.dropdown-toggle[aria-expanded=true] .chevron svg,
#navbarLeft.active .btnApp .dropright a.dropdown-toggle[aria-expanded=true] .chevron svg,
#navbarLeft.active .btnTools .dropright a.dropdown-toggle[aria-expanded=true] .chevron svg {
  transform: rotate(-90deg);
}
#navbarLeft.active .btnMenu .dropright .dropdown-menu,
#navbarLeft.active .btnApp .dropright .dropdown-menu,
#navbarLeft.active .btnTools .dropright .dropdown-menu {
  padding-left: 0.4em;
  transform: none !important;
  top: 50px !important;
  width: 100%;
  left: 0 !important;
  box-shadow: none;
}
#navbarLeft.active .dropright:hover > .dropdown-menu {
  display: none;
}
#navbarLeft.active .dropright > .dropdown-menu > .dropdown-submenu > .dropdown-item:hover > .dropdown-menu {
  display: none;
}
#navbarLeft.active .dropright > .dropdown-menu > .dropdown-submenu > .dropdown-item > .dropdown-menu > .dropdown-submenu > .dropdown-item:hover > .dropdown-menu {
  display: none;
}
#navbarLeft.active .dropright.show > .dropdown-menu.show {
  display: block;
}
#navbarLeft.active .dropright.show > .dropdown-menu.show > .dropdown-submenu > .dropdown-item > .dropdown-menu.show {
  display: contents;
}
#navbarLeft.active .dropright.show > .dropdown-menu.show > .dropdown-submenu > .dropdown-item > a > span.chevron > svg {
  transform: rotate(-90deg) !important;
  padding: 0.7rem 0.1rem;
}
#navbarLeft.active .dropright.show > .dropdown-menu.show > .dropdown-submenu > .dropdown-item > .dropdown-menu.show > .dropdown-submenu > .dropdown-item > .dropdown-menu.show {
  display: contents;
}
#navbarLeft.active .dropright.show > .dropdown-menu.show > .dropdown-submenu > .dropdown-item > .dropdown-menu.show > .dropdown-submenu > .dropdown-item > a > span.chevron > svg {
  transform: rotate(-90deg) !important;
}
.theme-integra #navbarLeft.active .dropright.active > .dropdown-toggle {
  color: #5c5c5c;
}
.theme-integra-dark #navbarLeft.active .dropright.active > .dropdown-toggle {
  color: #fafafa;
}
#navbarLeft.active .btnApp .appRow {
  display: block;
}
#navbarLeft.active .btnApp .appRow .appBlock {
  display: inline-flex;
  flex: 0 1 auto;
  flex-direction: column;
  align-items: center;
}
#navbarLeft.active .btnApp .appRow .appBlock .appIcon {
  font-size: 1rem;
  padding-bottom: 0.5rem;
}
.theme-integra #navbarLeft.active .btnApp .appRow .appBlock:hover {
  color: #5c5c5c;
}
.theme-integra-dark #navbarLeft.active .btnApp .appRow .appBlock:hover {
  color: #fafafa;
}
#navbarLeft.active .btnControlSidebar {
  transform: rotate(180deg);
  width: 100%;
  padding-left: 0.7rem;
}
/** Menu responsive **/
/**---- Fade-In/Out Effect ----**/
@media (max-width: 991.98px) {
  .menu-toggle:checked ~ #menu-mobile.header {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
    display: block;
  }
}

/**---- Header ----**/
@media (max-width: 991.98px) {
  #menu-mobile.header {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 60px;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    text-align: center;
    transition: opacity 300ms ease-in, visibility 0s ease-in 300ms;
    z-index: 1070;
    display: none;
  }
  .theme-integra #menu-mobile.header {
    background: #ffffff;
  }
  .theme-integra-dark #menu-mobile.header {
    background: #444e54;
  }
}
@media (max-width: 991.98px) {
  #menu-mobile.header nav {
    height: calc(100% - 60px);
  }
}
@media (max-width: 991.98px) {
  #menu-mobile.header nav .btnMenu,
  #menu-mobile.header nav .btnApp {
    width: inherit !important;
    border: none;
    box-shadow: none;
    background: none !important;
    display: flex;
    margin-top: 3em;
    flex-direction: column;
  }
}
@media (max-width: 991.98px) {
  #menu-mobile.header nav .btnMenu .dropright, #menu-mobile.header nav .btnMenu .menuLink,
  #menu-mobile.header nav .btnApp .dropright,
  #menu-mobile.header nav .btnApp .menuLink {
    margin: 0.7em 0;
    display: flex;
    align-items: center;
    position: relative;
    flex-direction: column;
    width: 100%;
    cursor: pointer;
  }
}
@media (max-width: 991.98px) {
  #menu-mobile.header nav .btnMenu .dropright a, #menu-mobile.header nav .btnMenu .menuLink a,
  #menu-mobile.header nav .btnApp .dropright a,
  #menu-mobile.header nav .btnApp .menuLink a {
    width: 100%;
    padding: 1.5em 1.7em;
    cursor: pointer;
    text-align: left;
  }
  .theme-integra #menu-mobile.header nav .btnMenu .dropright a, .theme-integra #menu-mobile.header nav .btnMenu .menuLink a,
  .theme-integra #menu-mobile.header nav .btnApp .dropright a,
  .theme-integra #menu-mobile.header nav .btnApp .menuLink a {
    color: #8e8e8e;
  }
  .theme-integra-dark #menu-mobile.header nav .btnMenu .dropright a, .theme-integra-dark #menu-mobile.header nav .btnMenu .menuLink a,
  .theme-integra-dark #menu-mobile.header nav .btnApp .dropright a,
  .theme-integra-dark #menu-mobile.header nav .btnApp .menuLink a {
    color: #c6c6c6;
  }
}
@media (max-width: 991.98px) {
  #menu-mobile.header nav .btnMenu .dropright a span, #menu-mobile.header nav .btnMenu .menuLink a span,
  #menu-mobile.header nav .btnApp .dropright a span,
  #menu-mobile.header nav .btnApp .menuLink a span {
    visibility: visible;
  }
}
@media (max-width: 991.98px) {
  #menu-mobile.header nav .btnMenu .dropright a svg:first-of-type, #menu-mobile.header nav .btnMenu .menuLink a svg:first-of-type,
  #menu-mobile.header nav .btnApp .dropright a svg:first-of-type,
  #menu-mobile.header nav .btnApp .menuLink a svg:first-of-type {
    margin-right: 1em;
    width: 1em !important;
    opacity: 1;
  }
}
@media (max-width: 991.98px) {
  #menu-mobile.header nav .btnMenu .dropright a .chevron svg, #menu-mobile.header nav .btnMenu .menuLink a .chevron svg,
  #menu-mobile.header nav .btnApp .dropright a .chevron svg,
  #menu-mobile.header nav .btnApp .menuLink a .chevron svg {
    float: right;
    visibility: visible;
    transition-property: visibility;
    transition-delay: 0.3s;
  }
}
@media (max-width: 991.98px) {
  #menu-mobile.header nav .btnMenu .dropright a.dropdown-toggle::after, #menu-mobile.header nav .btnMenu .menuLink a.dropdown-toggle::after,
  #menu-mobile.header nav .btnApp .dropright a.dropdown-toggle::after,
  #menu-mobile.header nav .btnApp .menuLink a.dropdown-toggle::after {
    display: none;
  }
}
#menu-mobile.header nav .btnMenu .dropright .dropdown-menu, #menu-mobile.header nav .btnMenu .menuLink .dropdown-menu,
#menu-mobile.header nav .btnApp .dropright .dropdown-menu,
#menu-mobile.header nav .btnApp .menuLink .dropdown-menu {
  font-size: 1rem;
  border: none;
}
@media (max-width: 991.98px) {
  #menu-mobile.header nav .btnMenu .dropright .dropdown-menu, #menu-mobile.header nav .btnMenu .menuLink .dropdown-menu,
  #menu-mobile.header nav .btnApp .dropright .dropdown-menu,
  #menu-mobile.header nav .btnApp .menuLink .dropdown-menu {
    margin-left: 0;
    position: relative !important;
    transform: translate3d(5px, 0px, 0px) !important;
    width: calc(100% - 10px);
    left: 0;
    box-shadow: none;
    padding-left: 2.2em;
  }
  .theme-integra #menu-mobile.header nav .btnMenu .dropright .dropdown-menu, .theme-integra #menu-mobile.header nav .btnMenu .menuLink .dropdown-menu,
  .theme-integra #menu-mobile.header nav .btnApp .dropright .dropdown-menu,
  .theme-integra #menu-mobile.header nav .btnApp .menuLink .dropdown-menu {
    background: #ffffff;
  }
  .theme-integra-dark #menu-mobile.header nav .btnMenu .dropright .dropdown-menu, .theme-integra-dark #menu-mobile.header nav .btnMenu .menuLink .dropdown-menu,
  .theme-integra-dark #menu-mobile.header nav .btnApp .dropright .dropdown-menu,
  .theme-integra-dark #menu-mobile.header nav .btnApp .menuLink .dropdown-menu {
    background: #444e54;
  }
}
@media (max-width: 991.98px) {
  #menu-mobile.header nav .btnMenu .dropright .dropdown-menu a, #menu-mobile.header nav .btnMenu .menuLink .dropdown-menu a,
  #menu-mobile.header nav .btnApp .dropright .dropdown-menu a,
  #menu-mobile.header nav .btnApp .menuLink .dropdown-menu a {
    padding: 0.6667em 0.7em;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media (max-width: 991.98px) {
  #menu-mobile.header nav .btnMenu .dropright .dropdown-menu a span, #menu-mobile.header nav .btnMenu .menuLink .dropdown-menu a span,
  #menu-mobile.header nav .btnApp .dropright .dropdown-menu a span,
  #menu-mobile.header nav .btnApp .menuLink .dropdown-menu a span {
    visibility: visible;
    transition-property: visibility;
    transition-delay: 0.3s;
  }
}
.theme-integra #menu-mobile.header nav .btnMenu .dropright .dropdown-menu .dropdown-item:hover,
.theme-integra #menu-mobile.header nav .btnMenu .dropright .dropdown-menu .dropdown-item:focus, .theme-integra #menu-mobile.header nav .btnMenu .menuLink .dropdown-menu .dropdown-item:hover,
.theme-integra #menu-mobile.header nav .btnMenu .menuLink .dropdown-menu .dropdown-item:focus,
.theme-integra #menu-mobile.header nav .btnApp .dropright .dropdown-menu .dropdown-item:hover,
.theme-integra #menu-mobile.header nav .btnApp .dropright .dropdown-menu .dropdown-item:focus,
.theme-integra #menu-mobile.header nav .btnApp .menuLink .dropdown-menu .dropdown-item:hover,
.theme-integra #menu-mobile.header nav .btnApp .menuLink .dropdown-menu .dropdown-item:focus {
  background-color: transparent;
}
.theme-integra-dark #menu-mobile.header nav .btnMenu .dropright .dropdown-menu .dropdown-item:hover,
.theme-integra-dark #menu-mobile.header nav .btnMenu .dropright .dropdown-menu .dropdown-item:focus, .theme-integra-dark #menu-mobile.header nav .btnMenu .menuLink .dropdown-menu .dropdown-item:hover,
.theme-integra-dark #menu-mobile.header nav .btnMenu .menuLink .dropdown-menu .dropdown-item:focus,
.theme-integra-dark #menu-mobile.header nav .btnApp .dropright .dropdown-menu .dropdown-item:hover,
.theme-integra-dark #menu-mobile.header nav .btnApp .dropright .dropdown-menu .dropdown-item:focus,
.theme-integra-dark #menu-mobile.header nav .btnApp .menuLink .dropdown-menu .dropdown-item:hover,
.theme-integra-dark #menu-mobile.header nav .btnApp .menuLink .dropdown-menu .dropdown-item:focus {
  background-color: transparent;
}
@media (max-width: 991.98px) {
  #menu-mobile.header nav .btnApp .appRow {
    display: block;
  }
}
@media (max-width: 991.98px) {
  #menu-mobile.header nav .btnApp .appRow .appBlock {
    display: inline-flex;
    flex: 0 1 auto;
    flex-direction: column;
    margin: 0 1.5em 0 0;
    align-items: center;
    justify-content: space-around;
  }
  .theme-integra #menu-mobile.header nav .btnApp .appRow .appBlock {
    color: #8e8e8e;
  }
  .theme-integra-dark #menu-mobile.header nav .btnApp .appRow .appBlock {
    color: #c6c6c6;
  }
}
@media (max-width: 991.98px) {
  #menu-mobile.header nav .btnApp .appRow .appBlock .appIcon {
    padding-bottom: 0.5rem;
  }
}

@media (max-width: 991.98px) {
  #menu-mobile.header .dropright.show > a > span.chevron > svg {
    transform: rotate(-90deg) !important;
  }
}

/**---- Menu Icon ----**/
.mobile-bar {
  background: #319ACB;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
@media (max-width: 991.98px) {
  .mobile-bar {
    z-index: 1071;
    position: fixed;
    top: 0;
    left: 0;
    padding: 0 1rem;
    width: 64px;
    height: 64px;
  }
}
@media (max-width: 991.98px) {
  .mobile-bar div {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .mobile-bar div .brand-img {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 60%;
    height: 89%;
    display: block;
    margin: 2px auto;
  }
}
@media (max-width: 991.98px) {
  .mobile-bar .menu-icon {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: -webkit-transform 300ms ease-in;
    transition: transform 300ms ease-in;
    transition: transform 300ms ease-in, -webkit-transform 300ms ease-in;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }
}
@media (max-width: 991.98px) {
  .mobile-bar .menu-icon span {
    display: block;
    position: absolute;
    top: 55%;
    margin-top: -0.3em;
    width: 100%;
    height: 0.3em;
    border-radius: 1px;
    transition: -webkit-transform 300ms ease-in;
    transition: transform 300ms ease-in;
    transition: transform 300ms ease-in, -webkit-transform 300ms ease-in;
    visibility: hidden;
  }
  .theme-integra .mobile-bar .menu-icon span {
    background: white;
  }
  .theme-integra-dark .mobile-bar .menu-icon span {
    background: white;
  }
}
@media (max-width: 991.98px) {
  .mobile-bar .menu-icon span:before, .mobile-bar .menu-icon span:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 1px;
    transition: -webkit-transform 300ms ease;
    transition: transform 300ms ease;
    transition: transform 300ms ease, -webkit-transform 300ms ease;
    visibility: hidden;
  }
  .theme-integra .mobile-bar .menu-icon span:before, .theme-integra .mobile-bar .menu-icon span:after {
    background: white;
  }
  .theme-integra-dark .mobile-bar .menu-icon span:before, .theme-integra-dark .mobile-bar .menu-icon span:after {
    background: white;
  }
}
@media (max-width: 991.98px) {
  .mobile-bar .menu-icon span:before {
    transform: translateY(-0.6em);
    visibility: hidden;
  }
}
@media (max-width: 991.98px) {
  .mobile-bar .menu-icon span:after {
    transform: translateY(0.6em);
    visibility: hidden;
  }
}

/**---- Menu Icon Effects ----**/
@media (max-width: 991.98px) {
  .menu-toggle:checked + .mobile-bar {
    display: flex !important;
    width: 100%;
    padding: 0 25px;
  }
}

@media (max-width: 991.98px) {
  .menu-toggle:checked + .mobile-bar .menu-icon {
    transform: rotate(45deg);
    visibility: hidden;
    width: 25px;
  }
}

@media (max-width: 991.98px) {
  .menu-toggle:checked + .mobile-bar .menu-icon > span {
    visibility: visible;
  }
}

@media (max-width: 991.98px) {
  .menu-toggle:checked + .mobile-bar span:before,
  .menu-toggle:checked + .mobile-bar span:after {
    transform: rotate(90deg);
    visibility: visible;
  }
}

@media (max-width: 991.98px) {
  .menu-toggle:checked + .mobile-bar div {
    display: inline;
    flex: 1;
  }
}

@media (min-width: 992px) {
  #menu-mobile.header, .mobile-bar, #menu-toggle {
    display: none;
  }
}

/** LOGIN **/
#login {
  height: 100vh;
}
#login .blockLeft h1.silka {
  font-size: 3rem;
  font-weight: normal;
  color: #FFFFFF;
}
#login .blockLeft img {
  height: 9%;
}
@media (max-width: 991.98px) {
  #login .blockLeft img {
    height: 45%;
    margin: 0 auto;
  }
}
@media (max-width: 766.98px) {
  #login .blockLeft img {
    height: 28%;
    margin: 0 auto;
  }
}
@media (max-width: 991.98px) {
  #login .blockLeft {
    height: 30vh;
  }
}
@media (max-width: 766.98px) {
  #login .blockLeft {
    height: 30vh;
  }
}
#login .blockRight {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 991.98px) {
  #login .blockRight {
    height: 70vh;
  }
}
@media (max-width: 766.98px) {
  #login .blockRight {
    height: 70vh;
  }
}
#login .blockRight h5 {
  font-size: 0.8rem;
}
#login .blockRight img.imagenLogo {
  width: 24%;
  padding-top: 2rem;
  padding-bottom: 1rem;
}
@media (max-width: 991.98px) {
  #login .blockRight img.imagenLogo {
    width: 22%;
    padding-bottom: 2rem;
  }
}
@media (max-width: 766.98px) {
  #login .blockRight img.imagenLogo {
    width: 22%;
    padding-top: 1rem;
  }
}
#login .blockRight img {
  width: 40%;
}
@media (min-width: 767px) and (max-width: 1199.98px) {
  #login .blockRight img {
    width: 60%;
    padding-top: 2rem;
  }
}
@media (max-width: 991.98px) {
  #login .blockRight img {
    padding-top: 2rem;
  }
}
@media (max-width: 766.98px) {
  #login .blockRight img {
    padding-top: 2rem;
  }
}
#login .blockRight #blockLoginForm {
  padding: 2rem 6rem;
}
@media (min-width: 767px) and (max-width: 1199.98px) {
  #login .blockRight #blockLoginForm {
    padding: 6rem 4rem;
  }
}
@media (max-width: 991.98px) {
  #login .blockRight #blockLoginForm {
    padding: 0rem 4rem 0rem 4rem;
  }
}
@media (max-width: 766.98px) {
  #login .blockRight #blockLoginForm {
    padding: 0 2rem;
  }
}
#login .blockRight #blockLoginForm h5 {
  font-size: 0.8rem;
}

/** TENANTS **/
#tenant {
  height: 100vh;
}
#tenant #labelTenant {
  color: #319ACB;
}
#tenant .card {
  padding: 3rem 0;
}
#tenant .card #select_tenants {
  border-color: transparent;
  padding-left: 0;
  -webkit-appearance: none;
}
#tenant .card #select_tenants option {
  border-top: 1px solid #F3F3F3;
  color: #444E54;
  padding: 1rem 1rem 1rem 4rem;
}
#tenant .card #select_tenants option:last-of-type {
  border-bottom: 1px solid #F3F3F3;
}

/** Sidebar Right **/
#sidebar-right {
  width: 350px;
  height: 100%;
  visibility: hidden;
  box-shadow: 0 0 20px rgba(34, 36, 38, 0.15);
  right: 0;
  left: auto;
  position: fixed;
  top: 0;
  max-height: 100%;
  overflow-y: auto !important;
  z-index: 1072;
  transform: translate3d(100%, 0%, 0);
  transition: all 500ms ease 0.1s;
}
.theme-integra #sidebar-right {
  background-color: #ffffff;
  color: #5c5c5c;
}
.theme-integra-dark #sidebar-right {
  background-color: #444e54;
  color: #fafafa;
}
@media (max-width: 766.98px) {
  #sidebar-right {
    width: 100% !important;
  }
}
#sidebar-right .header {
  height: 48px;
  padding: 0 1rem;
  font-size: 1rem;
}
.theme-integra #sidebar-right .header {
  background-color: #f7f7f7;
}
.theme-integra-dark #sidebar-right .header {
  background-color: #3f484d;
}
@media (max-width: 766.98px) {
  #sidebar-right .header {
    width: 100% !important;
  }
}
#sidebar-right .header #sidebar-right-title {
  display: inline-block;
}
#sidebar-right .header .closeSidebarRight {
  padding-left: 0.5rem;
}
.theme-integra #sidebar-right .header .closeSidebarRight:hover {
  color: #8e8e8e;
}
.theme-integra-dark #sidebar-right .header .closeSidebarRight:hover {
  color: #c6c6c6;
}
#sidebar-right .content .notificationsLinks {
  text-align: right;
  margin-bottom: 1rem;
  font-size: 12px;
}
#sidebar-right .content .notificationsLinks a {
  text-decoration: underline;
}
.theme-integra #sidebar-right .content .notificationsLinks a {
  color: #5c5c5c;
}
.theme-integra-dark #sidebar-right .content .notificationsLinks a {
  color: #fafafa;
}
.theme-integra #sidebar-right .content .notificationsLinks a:hover {
  color: #8e8e8e;
}
.theme-integra-dark #sidebar-right .content .notificationsLinks a:hover {
  color: #c6c6c6;
}
@media (max-width: 1199.98px) {
  #sidebar-right .content .notificationsLinks .notificationSettings {
    display: none;
  }
}
#sidebar-right .footer {
  height: 56px;
  padding: 0 1rem;
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
}
.theme-integra #sidebar-right .footer {
  background-color: #f7f7f7;
}
.theme-integra-dark #sidebar-right .footer {
  background-color: #3f484d;
}
#sidebar-right #notificationContainer .notificationContainer {
  padding: 0.5rem 1rem !important;
  width: 100%;
  border: none;
  box-shadow: none;
}
@media (max-width: 766.98px) {
  #sidebar-right #notificationContainer .notificationContainer {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
}
#sidebar-right #notificationContainer .notificationContainer .notificationIconBlock {
  margin-top: 0.5rem;
}
#sidebar-right #notificationContainer .notificationContainer .notificationIconBlock .makeAsRead {
  padding-left: 1rem;
}
.theme-integra #sidebar-right #notificationContainer .notificationContainer .notificationIconBlock .makeAsRead {
  color: #5c5c5c;
}
.theme-integra-dark #sidebar-right #notificationContainer .notificationContainer .notificationIconBlock .makeAsRead {
  color: #fafafa;
}
.theme-integra #sidebar-right #notificationContainer .notificationContainer .notificationIconBlock .makeAsRead:hover {
  color: #8e8e8e;
}
.theme-integra-dark #sidebar-right #notificationContainer .notificationContainer .notificationIconBlock .makeAsRead:hover {
  color: #c6c6c6;
}
#sidebar-right #notificationContainer .notificationContainer .notificationMsgBlock {
  padding-left: 1rem;
  width: 75%;
}
#sidebar-right #notificationContainer .notificationContainer .notificationMsgBlock .info {
  font-size: 12px;
}

#sidebar-right.active {
  width: 350px;
  transform: translate3d(0, 0, 0);
  visibility: visible;
  overflow: visible;
  transition: all 500ms ease 0.1s;
}

/** Sidebar Right **/
#sidebar-left {
  width: 350px;
  height: 100%;
  visibility: hidden;
  box-shadow: 0 0 20px rgba(34, 36, 38, 0.15);
  right: auto;
  left: 0px;
  position: fixed;
  top: 0;
  max-height: 100%;
  overflow-y: auto !important;
  z-index: 900;
  transition: all 500ms ease 0.1s;
  transform: translate3d(-100%, 0, 0);
}
.theme-integra #sidebar-left {
  background-color: #ffffff;
  color: #5c5c5c;
}
.theme-integra-dark #sidebar-left {
  background-color: #444e54;
  color: #fafafa;
}
@media (max-width: 991.98px) {
  #sidebar-left {
    left: 0;
    z-index: 1072;
  }
}
@media (max-width: 766.98px) {
  #sidebar-left {
    width: 100% !important;
    z-index: 1072;
  }
}
#sidebar-left .header {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  font-size: 1rem;
}
.theme-integra #sidebar-left .header {
  background-color: #f7f7f7;
}
.theme-integra-dark #sidebar-left .header {
  background-color: #3f484d;
}
@media (max-width: 766.98px) {
  #sidebar-left .header {
    width: 100% !important;
  }
}
#sidebar-left .header #sidebar-left-title {
  display: inline-block;
}
.occidental #sidebar-left .header #sidebar-left-title {
  font-family: "OpenSans-Bold", sans-serif !important;
}
.arabic #sidebar-left .header #sidebar-left-title {
  font-family: "NotoKufiArabic-Bold", sans-serif !important;
}
@media (max-width: 766.98px) {
  #sidebar-left .header #sidebar-left-title {
    font-size: 1rem !important;
  }
}
#sidebar-left .header .notificationsLinks {
  float: right;
  font-size: 9px;
}
#sidebar-left .header .notificationsLinks a {
  text-decoration: underline;
  color: #232323;
}
.occidental #sidebar-left .header .notificationsLinks a:hover {
  font-family: "OpenSans-Bold", sans-serif;
}
.arabic #sidebar-left .header .notificationsLinks a:hover {
  font-family: "NotoKufiArabic-Bold", sans-serif;
}
.theme-integra #sidebar-left .header .btnTreeConfig:hover,
.theme-integra #sidebar-left .header .btnLayersConfig:hover,
.theme-integra #sidebar-left .header .closeSidebarLeft:hover {
  color: #8e8e8e;
}
.theme-integra-dark #sidebar-left .header .btnTreeConfig:hover,
.theme-integra-dark #sidebar-left .header .btnLayersConfig:hover,
.theme-integra-dark #sidebar-left .header .closeSidebarLeft:hover {
  color: #c6c6c6;
}

#sidebar-left.active {
  width: 350px;
  transform: translate3d(0, 0, 0);
  visibility: visible;
  overflow: visible;
  transition: all 500ms ease 0.1s;
  margin-left: 64px !important;
}
@media (max-width: 991.98px) {
  #sidebar-left.active {
    margin-left: 0 !important;
  }
}
@media (max-width: 766.98px) {
  #sidebar-left.active {
    width: 100% !important;
    margin-left: 0 !important;
  }
}

.CodeMirror {
  height: 396px !important;
  font-size: 14px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}
.theme-integra .CodeMirror {
  border: 1px solid #d5d5d5 !important;
}
.theme-integra-dark .CodeMirror {
  border: 1px solid #31383c !important;
}

.codemirrorPlaceholders .CodeMirror {
  height: 425px !important;
}

.CodeMirror-hscrollbar {
  height: 6px;
}

.CodeMirror-vscrollbar {
  width: 6px;
}

.ag-theme-alpine,
.ag-theme-alpine-dark {
  --ag-alpine-active-color: #319ACB;
}

/** AG-Grid **/
.ag-grid {
  height: 600px;
}

.ag-theme-alpine-dark,
.ag-theme-alpine {
  font-size: 14px;
}
.theme-integra .ag-theme-alpine-dark,
.theme-integra .ag-theme-alpine {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}
.theme-integra-dark .ag-theme-alpine-dark,
.theme-integra-dark .ag-theme-alpine {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}
.occidental .ag-theme-alpine-dark,
.occidental .ag-theme-alpine {
  font-family: "OpenSans-Regular", sans-serif;
}
.arabic .ag-theme-alpine-dark,
.arabic .ag-theme-alpine {
  font-family: "NotoKufiArabic-Regular", sans-serif;
}

.ag-theme-alpine-dark.error,
.ag-theme-alpine.error {
  box-shadow: 0px 0px 3px 0px #E37272, 0px 0px 0px 1px #E37272;
}

.ag-theme-alpine .ag-header,
.ag-theme-alpine-dark .ag-header {
  border-bottom: none !important;
}
.theme-integra .ag-theme-alpine .ag-header,
.theme-integra .ag-theme-alpine-dark .ag-header {
  background-color: #f3f3f3;
}
.theme-integra-dark .ag-theme-alpine .ag-header,
.theme-integra-dark .ag-theme-alpine-dark .ag-header {
  background-color: #373f44;
}

.ag-theme-alpine .ag-menu,
.ag-theme-alpine-dark .ag-menu,
.ag-theme-alpine .ag-menu-header,
.ag-theme-alpine-dark .ag-menu-header {
  border-bottom: none !important;
}
.theme-integra .ag-theme-alpine .ag-menu,
.theme-integra .ag-theme-alpine-dark .ag-menu,
.theme-integra .ag-theme-alpine .ag-menu-header,
.theme-integra .ag-theme-alpine-dark .ag-menu-header {
  background-color: #f3f3f3;
}
.theme-integra-dark .ag-theme-alpine .ag-menu,
.theme-integra-dark .ag-theme-alpine-dark .ag-menu,
.theme-integra-dark .ag-theme-alpine .ag-menu-header,
.theme-integra-dark .ag-theme-alpine-dark .ag-menu-header {
  background-color: #373f44;
}

.ag-theme-alpine .ag-header-row,
.ag-theme-alpine-dark .ag-header-row {
  height: 40px;
  font-weight: 400;
}
.theme-integra .ag-theme-alpine .ag-header-row,
.theme-integra .ag-theme-alpine-dark .ag-header-row {
  color: #5c5c5c;
}
.theme-integra-dark .ag-theme-alpine .ag-header-row,
.theme-integra-dark .ag-theme-alpine-dark .ag-header-row {
  color: #fafafa;
}
.theme-integra .ag-theme-alpine .ag-header-row .ag-checkbox-input-wrapper,
.theme-integra .ag-theme-alpine-dark .ag-header-row .ag-checkbox-input-wrapper {
  background-color: #ffffff;
}
.theme-integra-dark .ag-theme-alpine .ag-header-row .ag-checkbox-input-wrapper,
.theme-integra-dark .ag-theme-alpine-dark .ag-header-row .ag-checkbox-input-wrapper {
  background-color: #444e54;
}

.ag-theme-alpine .ag-row-selected {
  background-color: rgba(33, 150, 243, 0.3);
}

.ag-theme-alpine-dark .ag-row,
.ag-theme-alpine .ag-row {
  height: 32px;
  font-size: 14px;
}
.theme-integra .ag-theme-alpine-dark .ag-row,
.theme-integra .ag-theme-alpine .ag-row {
  color: #5c5c5c;
  background-color: #ffffff;
}
.theme-integra-dark .ag-theme-alpine-dark .ag-row,
.theme-integra-dark .ag-theme-alpine .ag-row {
  color: #fafafa;
  background-color: #444e54;
}

.theme-integra .ag-theme-alpine .ag-row-odd,
.theme-integra .ag-theme-alpine-dark .ag-row-odd {
  background-color: #FFFFFF;
}
.theme-integra-dark .ag-theme-alpine .ag-row-odd,
.theme-integra-dark .ag-theme-alpine-dark .ag-row-odd {
  background-color: #565F64;
}

.theme-integra .ag-theme-alpine-dark .tree-rows {
  background-color: #ffffff;
}
.theme-integra-dark .ag-theme-alpine-dark .tree-rows {
  background-color: #444e54;
}

.ag-theme-alpine-dark .ag-cell,
.ag-theme-alpine .ag-cell {
  /*line-height: 30px;

  @include media-breakpoint-between(sm, md) {
      line-height: 46px;
  }

  @include media-breakpoint-between(xs, sm) {
      line-height: 46px;
  }

  @include media-breakpoint-down(xs) {
      line-height: 46px;
  }*/
}
.ag-theme-alpine-dark .ag-cell .ag-cell-wrapper,
.ag-theme-alpine .ag-cell .ag-cell-wrapper {
  height: inherit;
}

.ag-cell, .ag-full-width-row .ag-cell-wrapper.ag-row-group {
  line-height: var(--ag-line-height) !important;
}

.ag-theme-alpine .ag-checkbox-input-wrapper,
.ag-theme-alpine-dark .ag-checkbox-input-wrapper {
  border-radius: 2px;
}
.theme-integra .ag-theme-alpine .ag-checkbox-input-wrapper,
.theme-integra .ag-theme-alpine-dark .ag-checkbox-input-wrapper {
  background-color: #f3f3f3;
}
.theme-integra-dark .ag-theme-alpine .ag-checkbox-input-wrapper,
.theme-integra-dark .ag-theme-alpine-dark .ag-checkbox-input-wrapper {
  background-color: #373f44;
}

.theme-integra .ag-menu-column-select-wrapper .ag-checkbox-input-wrapper {
  background-color: #FFFFFF;
}
.theme-integra-dark .ag-menu-column-select-wrapper .ag-checkbox-input-wrapper {
  background-color: #565F64;
}

/*.ag-theme-alpine .ag-checkbox-input-wrapper:after,
.ag-theme-alpine-dark .ag-checkbox-input-wrapper:after {
    content: none;
}*/
#gridExplorer .ag-column-select-column.ag-toolpanel-indent-0:last-of-type,
#gridGroupAlarms .ag-column-select-column.ag-toolpanel-indent-0:last-of-type {
  display: none !important;
}

.ag-bl-center-row.ag-bl-normal-center-row {
  display: inline-block !important;
}

.ag-theme-alpine .ag-rich-select-row,
.ag-theme-alpine-dark .ag-rich-select-row {
  padding-left: 0;
}

.ag-theme-alpine .ag-rich-select-row > span,
.ag-theme-alpine-dark .ag-rich-select-row > span,
.ag-theme-alpine .ag-rich-select-value > span,
.ag-theme-alpine-dark .ag-rich-select-value > span {
  width: 100%;
}

.ag-picker-field-wrapper {
  height: 35px;
}
.theme-integra .ag-picker-field-wrapper {
  background-color: #f3f3f3 !important;
  border: 1px solid #d5d5d5 !important;
  color: #5c5c5c !important;
}
.theme-integra-dark .ag-picker-field-wrapper {
  background-color: #373f44 !important;
  border: 1px solid #31383c !important;
  color: #fafafa !important;
}
.ag-picker-field-wrapper .ag-picker-field-icon {
  margin-right: 1rem;
}

.theme-integra .ag-icon:hover {
  color: #8e8e8e !important;
}
.theme-integra-dark .ag-icon:hover {
  color: #c6c6c6 !important;
}

.ag-icon-small-down:before {
  content: "\f12f" !important;
}

.ag-root-wrapper {
  overflow: inherit;
  border: none !important;
}
.theme-integra .ag-root-wrapper {
  background: #ffffff;
}
.theme-integra-dark .ag-root-wrapper {
  background: #444e54;
}

#permissionsGridList .ag-header, #documentsByOwnerTreeGrid .ag-header {
  border-bottom: 0px !important;
  min-height: 0 !important;
  height: 0 !important;
}

.ag-theme-alpine-dark .ag-ltr .ag-row-level-0 .ag-row-group-leaf-indent {
  margin-left: 28px;
}

.ag-theme-alpine .ag-ltr .ag-row-level-0 .ag-row-group-leaf-indent {
  margin-left: 28px;
}

.ag-body-viewport.ag-layout-normal {
  overflow-y: overlay;
  -webkit-overflow-scrolling: touch;
}

.ag-popup-child:not(.ag-tooltip-custom) {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2) !important;
}

.ag-popup-editor {
  z-index: 2;
}

.custom-tooltip {
  position: absolute;
  max-width: 350px;
  padding: 0.5rem;
  border: 1px solid black;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 0.5s;
}
.theme-integra .custom-tooltip {
  background-color: #f3f3f3;
  color: #5c5c5c;
}
.theme-integra-dark .custom-tooltip {
  background-color: #373f44;
  color: #fafafa;
}

.custom-tooltip.ag-tooltip-hiding {
  opacity: 0;
}

.occidental .custom-tooltip p:first-of-type {
  font-family: "OpenSans-Bold", sans-serif;
}
.arabic .custom-tooltip p:first-of-type {
  font-family: "NotoKufiArabic-Bold", sans-serif;
}

.custom-tooltip-null {
  display: none;
}

.ag-standard-button {
  text-transform: uppercase;
  min-width: 180px;
  background-color: transparent !important;
  font-weight: 400 !important;
}
.theme-integra .ag-standard-button {
  border-color: #5c5c5c !important;
  color: #5c5c5c !important;
}
.theme-integra-dark .ag-standard-button {
  border-color: #fafafa !important;
  color: #fafafa !important;
}
.ag-standard-button.disabled {
  opacity: 1;
}
.theme-integra .ag-standard-button.disabled {
  border-color: #b4b4b4 !important;
  color: #b4b4b4 !important;
}
.theme-integra-dark .ag-standard-button.disabled {
  border-color: #8e9498 !important;
  color: #8e9498 !important;
}
.theme-integra .ag-standard-button:hover, .theme-integra .ag-standard-button.active {
  border-color: #5c5c5c !important;
  color: #5c5c5c !important;
  background: rgba(92, 92, 92, 0.1) !important;
}
.theme-integra-dark .ag-standard-button:hover, .theme-integra-dark .ag-standard-button.active {
  border-color: #fafafa !important;
  color: #fafafa !important;
  background: rgba(250, 250, 250, 0.08) !important;
}
.theme-integra .ag-standard-button.active {
  box-shadow: rgba(213, 213, 213, 0.75) !important;
}
.theme-integra-dark .ag-standard-button.active {
  box-shadow: gba(142, 148, 152, 0.3) !important;
}

.w-100 .ag-group-value {
  width: 100%;
}

.ag-filter .ag-checkbox-input-wrapper:not(.ag-checked)::after {
  color: rgba(0, 0, 0, 0.5) !important;
}

#sideBarHierarchyTreeGrid .ag-group-checkbox {
  display: none;
}
#sideBarHierarchyTreeGrid .ag-group-checkbox .ag-checkbox-input {
  pointer-events: none !important;
}
#sideBarHierarchyTreeGrid .ag-row {
  border-left: 4px solid transparent !important;
}
#sideBarHierarchyTreeGrid .ag-row-selected {
  border-left: 4px solid #319ACB !important;
}

.theme-integra .ag-row-selected .hierarchyLink {
  color: #8e8e8e;
}
.theme-integra-dark .ag-row-selected .hierarchyLink {
  color: #c6c6c6;
}

.hierarchyLink:hover {
  cursor: pointer;
}
.theme-integra .hierarchyLink:hover {
  color: #8e8e8e;
}
.theme-integra-dark .hierarchyLink:hover {
  color: #c6c6c6;
}

.ag-cell-inline-editing .custom-control {
  display: flex;
  justify-content: center;
}

.ag-rich-select-list {
  padding-left: var(--ag-cell-horizontal-padding);
}

.ag-theme-alpine, .ag-theme-alpine-dark {
  --ag-checkbox-unchecked-color: transparent;
}

#hierarchyTreeGrid .ag-center-cols-container {
  transform: translateX(-50px);
}

.ag-ltr .ag-cell-focus:not(.ag-cell-range-selected):focus-within,
.ag-rtl .ag-cell-focus:not(.ag-cell-range-selected):focus-within {
  border-color: transparent;
}

/* $dark4: #1E2223;
$dark3: #282B2D;
$dark2: #34393B;
$dark1: #4C5558;*/
.theme-integra .grid-stack > .grid-stack-item > .grid-stack-item-content {
  background: #f7f7f7;
}
.theme-integra-dark .grid-stack > .grid-stack-item > .grid-stack-item-content {
  background: #3f484d;
}

.theme-integra .grid-stack > .grid-stack-item > .grid-stack-item-content > .grid-stack-outer-container {
  background: #f7f7f7;
}
.theme-integra-dark .grid-stack > .grid-stack-item > .grid-stack-item-content > .grid-stack-outer-container {
  background: #3f484d;
}

.theme-integra .widget-content > div > .widget-content-chartLegend .divider {
  background-color: #f7f7f7;
}
.theme-integra-dark .widget-content > div > .widget-content-chartLegend .divider {
  background-color: #3f484d;
}

/* $dark4: #1E2223;
$dark3: #282B2D;
$dark2: #34393B;
$dark1: #4C5558;*/
/** JS Panel OVERRIDE **/
.jsPanel,
.jsPanel-modal-backdrop {
  z-index: 1000 !important;
}
@media (max-width: 991.98px) {
  .jsPanel,
  .jsPanel-modal-backdrop {
    z-index: 1071 !important;
  }
}

.jsPanel .jsPanel-hdr {
  padding: 0.75rem 1rem !important;
  border-radius: 0 !important;
}
.theme-integra .jsPanel .jsPanel-hdr {
  background-color: #f7f7f7 !important;
  border-bottom: 1px solid #f7f7f7;
}
.theme-integra-dark .jsPanel .jsPanel-hdr {
  background-color: #3f484d !important;
  border-bottom: 1px solid #3f484d;
}

.jsPanel .jsPanel-hdr .jsPanel-headerbar {
  margin: 0em;
  padding: 0;
  box-shadow: none;
  width: 100%;
}
.theme-integra .jsPanel .jsPanel-hdr .jsPanel-headerbar {
  background: #f7f7f7;
  color: #5c5c5c;
}
.theme-integra-dark .jsPanel .jsPanel-hdr .jsPanel-headerbar {
  background: #3f484d;
  color: #fafafa;
}
.occidental .jsPanel .jsPanel-hdr .jsPanel-headerbar {
  font-family: "OpenSans-Regular", sans-serif;
}
.arabic .jsPanel .jsPanel-hdr .jsPanel-headerbar {
  font-family: "NotoKufiArabic-Regular", sans-serif;
}

.jsPanel .jsPanel-hdr .jsPanel-headerbar .jsPanel-titlebar {
  min-height: inherit;
  display: flex;
  align-items: center;
  overflow: visible;
  width: 100%;
}

.jsPanel .jsPanel-hdr .jsPanel-headerbar .jsPanel-titlebar .jsPanel-title {
  overflow: initial;
  font-variant: initial;
  font-size: 16px;
  width: calc(100% - 50px);
  white-space: normal;
  margin: 0;
}
.theme-integra .jsPanel .jsPanel-hdr .jsPanel-headerbar .jsPanel-titlebar .jsPanel-title {
  color: #5c5c5c !important;
}
.theme-integra-dark .jsPanel .jsPanel-hdr .jsPanel-headerbar .jsPanel-titlebar .jsPanel-title {
  color: #fafafa !important;
}

.jsPanel-headerbar .jsPanel-titlebar .jsPanel-title {
  font-variant: initial;
}

.theme-integra .jsPanel .jsPanel-hdr .jsPanel-headerbar .jsPanel-controlbar .jsPanel-btn {
  color: #5c5c5c !important;
}
.theme-integra-dark .jsPanel .jsPanel-hdr .jsPanel-headerbar .jsPanel-controlbar .jsPanel-btn {
  color: #fafafa !important;
}
.jsPanel .jsPanel-hdr .jsPanel-headerbar .jsPanel-controlbar .jsPanel-btn:not(:first-child) {
  padding-left: 5px;
}

.theme-integra .jsPanel .jsPanel-hdr .jsPanel-headerbar .jsPanel-controlbar .jsPanel-btn:hover {
  background-color: transparent !important;
  color: #8e8e8e !important;
}
.theme-integra-dark .jsPanel .jsPanel-hdr .jsPanel-headerbar .jsPanel-controlbar .jsPanel-btn:hover {
  background-color: transparent !important;
  color: #c6c6c6 !important;
}

.jsPanel-controlbar {
  margin: 0;
}

.jsPanel-controlbar .jsPanel-btn.jsPanel-btn-md svg:not(.svg-inline--fa), .jsPanel-controlbar .jsPanel-btn.jsPanel-btn-md span:not(.material-icons) {
  width: 14px;
  height: 14px;
  margin: 0;
}

.jsPanel .jsPanel-content {
  border-top: none !important;
  border-radius: 0;
  font-size: 14px;
}
.theme-integra .jsPanel .jsPanel-content {
  background-color: #f7f7f7 !important;
  color: #5c5c5c;
}
.theme-integra-dark .jsPanel .jsPanel-content {
  background-color: #3f484d !important;
  color: #fafafa;
}

.jsPanel .jsPanel-content .container-fluid, .jsPanel .jsPanel-content .container-sm, .jsPanel .jsPanel-content .container-md, .jsPanel .jsPanel-content .container-lg, .jsPanel .jsPanel-content .container-xl {
  padding: 1rem;
}
@media (max-width: 767px) {
  .jsPanel .jsPanel-content .container-fluid, .jsPanel .jsPanel-content .container-sm, .jsPanel .jsPanel-content .container-md, .jsPanel .jsPanel-content .container-lg, .jsPanel .jsPanel-content .container-xl {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}

.jsPanel .jsPanel-content .container-fluid .card, .jsPanel .jsPanel-content .container-sm .card, .jsPanel .jsPanel-content .container-md .card, .jsPanel .jsPanel-content .container-lg .card, .jsPanel .jsPanel-content .container-xl .card {
  padding: 1rem;
}

.theme-integra .jsPanel .jsPanel-content .container-fluid .card-header h6, .theme-integra .jsPanel .jsPanel-content .container-sm .card-header h6, .theme-integra .jsPanel .jsPanel-content .container-md .card-header h6, .theme-integra .jsPanel .jsPanel-content .container-lg .card-header h6, .theme-integra .jsPanel .jsPanel-content .container-xl .card-header h6 {
  color: #5c5c5c !important;
}
.theme-integra-dark .jsPanel .jsPanel-content .container-fluid .card-header h6, .theme-integra-dark .jsPanel .jsPanel-content .container-sm .card-header h6, .theme-integra-dark .jsPanel .jsPanel-content .container-md .card-header h6, .theme-integra-dark .jsPanel .jsPanel-content .container-lg .card-header h6, .theme-integra-dark .jsPanel .jsPanel-content .container-xl .card-header h6 {
  color: #fafafa !important;
}
.occidental .jsPanel .jsPanel-content .container-fluid .card-header h6, .occidental .jsPanel .jsPanel-content .container-sm .card-header h6, .occidental .jsPanel .jsPanel-content .container-md .card-header h6, .occidental .jsPanel .jsPanel-content .container-lg .card-header h6, .occidental .jsPanel .jsPanel-content .container-xl .card-header h6 {
  font-family: "OpenSans-Regular", sans-serif !important;
}
.arabic .jsPanel .jsPanel-content .container-fluid .card-header h6, .arabic .jsPanel .jsPanel-content .container-sm .card-header h6, .arabic .jsPanel .jsPanel-content .container-md .card-header h6, .arabic .jsPanel .jsPanel-content .container-lg .card-header h6, .arabic .jsPanel .jsPanel-content .container-xl .card-header h6 {
  font-family: "NotoKufiArabic-Regular", sans-serif !important;
}

.jsPanel .jsPanel-content .container-fluid .title h6, .jsPanel .jsPanel-content .container-sm .title h6, .jsPanel .jsPanel-content .container-md .title h6, .jsPanel .jsPanel-content .container-lg .title h6, .jsPanel .jsPanel-content .container-xl .title h6 {
  margin-bottom: 0;
  text-transform: uppercase;
}
.occidental .jsPanel .jsPanel-content .container-fluid .title h6, .occidental .jsPanel .jsPanel-content .container-sm .title h6, .occidental .jsPanel .jsPanel-content .container-md .title h6, .occidental .jsPanel .jsPanel-content .container-lg .title h6, .occidental .jsPanel .jsPanel-content .container-xl .title h6 {
  font-family: "OpenSans-Bold", sans-serif !important;
}
.arabic .jsPanel .jsPanel-content .container-fluid .title h6, .arabic .jsPanel .jsPanel-content .container-sm .title h6, .arabic .jsPanel .jsPanel-content .container-md .title h6, .arabic .jsPanel .jsPanel-content .container-lg .title h6, .arabic .jsPanel .jsPanel-content .container-xl .title h6 {
  font-family: "NotoKufiArabic-Bold", sans-serif !important;
}

.mobile .jsPanel {
  position: absolute !important;
}

.theme-integra .jsPanel-modal-backdrop {
  background: rgba(213, 213, 213, 0.8);
}
.theme-integra-dark .jsPanel-modal-backdrop {
  background: rgba(41, 47, 50, 0.8);
}

#jsPanel-replacement-container, .jsPanel-minimized-box, .jsPanel-minimized-container {
  left: 64px;
  z-index: 1050 !important;
}
#jsPanel-replacement-container .jsPanel-replacement, .jsPanel-minimized-box .jsPanel-replacement, .jsPanel-minimized-container .jsPanel-replacement {
  min-width: 260px;
}
.theme-integra #jsPanel-replacement-container .jsPanel-replacement, .theme-integra .jsPanel-minimized-box .jsPanel-replacement, .theme-integra .jsPanel-minimized-container .jsPanel-replacement {
  background-color: #f7f7f7 !important;
}
.theme-integra-dark #jsPanel-replacement-container .jsPanel-replacement, .theme-integra-dark .jsPanel-minimized-box .jsPanel-replacement, .theme-integra-dark .jsPanel-minimized-container .jsPanel-replacement {
  background-color: #3f484d !important;
}

/** Daterangepicker **/
.daterangepicker {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  float: left;
  min-width: 525px;
  max-width: 525px;
  margin: 2px 0 0;
  list-style: none;
  font-size: 14px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
}
@media (max-width: 766.98px) {
  .daterangepicker {
    min-width: 160px;
    width: auto !important;
  }
}
.theme-integra .daterangepicker {
  background-color: #f3f3f3;
  color: #5c5c5c;
}
.theme-integra-dark .daterangepicker {
  background-color: #373f44;
  color: #fafafa;
}

.theme-integra .daterangepicker:after {
  border-bottom: 6px solid #f3f3f3;
}
.theme-integra-dark .daterangepicker:after {
  border-bottom: 6px solid #373f44;
}

.theme-integra .daterangepicker.drop-up:after {
  border-top: 6px solid #f3f3f3;
}
.theme-integra-dark .daterangepicker.drop-up:after {
  border-top: 6px solid #373f44;
}

.theme-integra .daterangepicker.drop-up:before {
  border-top: 7px solid #f3f3f3;
}
.theme-integra-dark .daterangepicker.drop-up:before {
  border-top: 7px solid #373f44;
}

.theme-integra .daterangepicker:before {
  border-bottom: 7px solid #f3f3f3;
}
.theme-integra-dark .daterangepicker:before {
  border-bottom: 7px solid #373f44;
}

.theme-integra .daterangepicker .calendar-table {
  background-color: #f3f3f3;
  border: #d5d5d5;
}
.theme-integra-dark .daterangepicker .calendar-table {
  background-color: #373f44;
  border: #31383c;
}

.theme-integra .daterangepicker td.available:hover,
.theme-integra .daterangepicker th.available:hover {
  background-color: #d5d5d5;
}
.theme-integra-dark .daterangepicker td.available:hover,
.theme-integra-dark .daterangepicker th.available:hover {
  background-color: #31383c;
}

.daterangepicker.single {
  min-width: 160px;
  width: auto !important;
}
.daterangepicker.single .drp-buttons {
  display: flex !important;
}
.theme-integra .daterangepicker.single .drp-buttons {
  border-top: 1px solid #d5d5d5;
}
.theme-integra-dark .daterangepicker.single .drp-buttons {
  border-top: 1px solid #31383c;
}
@media (max-width: 766.98px) {
  .daterangepicker.single .drp-buttons {
    display: block !important;
  }
}
.daterangepicker.single .drp-buttons button {
  flex-grow: 1;
  min-width: unset;
}
@media (max-width: 766.98px) {
  .daterangepicker.single .drp-buttons button {
    margin-bottom: 8px !important;
    margin-left: 0 !important;
  }
}
.daterangepicker.single .drp-buttons button:first-of-type {
  margin: 0;
}

.daterangepicker .drp-calendar.left.single {
  margin: 0 auto;
  max-width: 100%;
  padding-right: 0;
}

.daterangepicker .ranges {
  width: 100%;
  text-align: center;
}
@media (max-width: 766.98px) {
  .daterangepicker .ranges {
    width: auto !important;
  }
}

@media (max-width: 766.98px) {
  .daterangepicker .ranges button {
    width: 100%;
  }
}

@media (max-width: 766.98px) {
  .daterangepicker .ranges button:first-of-type {
    margin-bottom: 0.5rem;
  }
}

.daterangepicker .drp-selected {
  display: block;
  padding-bottom: 8px;
}

.daterangepicker .calendar-table .next span,
.daterangepicker .calendar-table .prev span {
  border-width: 0 2px 2px 0 !important;
}
.theme-integra .daterangepicker .calendar-table .next span,
.theme-integra .daterangepicker .calendar-table .prev span {
  border: solid #5c5c5c;
}
.theme-integra-dark .daterangepicker .calendar-table .next span,
.theme-integra-dark .daterangepicker .calendar-table .prev span {
  border: solid #fafafa;
}

.theme-integra .daterangepicker td.off,
.theme-integra .daterangepicker td.off.in-range,
.theme-integra .daterangepicker td.off.start-date,
.theme-integra .daterangepicker td.off.end-date {
  background-color: #f3f3f3;
  color: #5c5c5c;
}
.theme-integra-dark .daterangepicker td.off,
.theme-integra-dark .daterangepicker td.off.in-range,
.theme-integra-dark .daterangepicker td.off.start-date,
.theme-integra-dark .daterangepicker td.off.end-date {
  background-color: #373f44;
  color: #fafafa;
}

.daterangepicker .calendar-table td {
  width: 30px;
  height: 30px;
}

.daterangepicker td.start-date.end-date,
.daterangepicker td.start-date,
.daterangepicker td.end-date {
  border-radius: 16px !important;
}

.theme-integra .daterangepicker td.active, .theme-integra .daterangepicker td.active:hover,
.theme-integra .daterangepicker td.active.end-date.in-range.available,
.theme-integra .daterangepicker td.active.start-date.available {
  background-color: #179ce9;
  color: #5c5c5c;
}
.theme-integra-dark .daterangepicker td.active, .theme-integra-dark .daterangepicker td.active:hover,
.theme-integra-dark .daterangepicker td.active.end-date.in-range.available,
.theme-integra-dark .daterangepicker td.active.start-date.available {
  background-color: #7ac8f5;
  color: #fafafa;
}

.daterangepicker td.in-range {
  background-color: rgba(49, 154, 203, 0.12);
}
.theme-integra .daterangepicker td.in-range {
  color: #5c5c5c;
}
.theme-integra-dark .daterangepicker td.in-range {
  color: #fafafa;
}

.theme-integra .daterangepicker select.monthselect {
  color: #5c5c5c;
}
.theme-integra-dark .daterangepicker select.monthselect {
  color: #fafafa;
}

.theme-integra .daterangepicker select.yearselect {
  color: #5c5c5c;
}
.theme-integra-dark .daterangepicker select.yearselect {
  color: #fafafa;
}

.daterangepicker.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  /*z-index: 1000;*/
  display: none;
  float: left;
  min-width: 525px;
  max-width: 546px;
  margin: 2px 0 0;
  list-style: none;
  font-size: 14px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
}

@media (max-width: 766.98px) {
  .daterangepicker {
    min-width: 160px;
    width: auto !important;
    position: relative;
    top: 0 !important;
  }
}

.daterangepicker .drp-calendar.left,
.daterangepicker .drp-calendar.right {
  padding: 0;
}

@media (max-width: 766.98px) {
  .daterangepicker .drp-buttons .btn {
    margin-bottom: 8px;
    margin-left: 0;
  }
}

/** SYNCFUSION OVERRIDES **/
.e-ddl .e-input,
.e-ddl .e-input[readonly],
.e-ddl-popup,
.e-ddl .e-options {
  font-size: 0.75rem;
  cursor: pointer;
}
.occidental .e-ddl .e-input,
.occidental .e-ddl .e-input[readonly],
.occidental .e-ddl-popup,
.occidental .e-ddl .e-options {
  font-family: "OpenSans-Regular", sans-serif;
}
.arabic .e-ddl .e-input,
.arabic .e-ddl .e-input[readonly],
.arabic .e-ddl-popup,
.arabic .e-ddl .e-options {
  font-family: "NotoKufiArabic-Regular", sans-serif;
}

.e-ddl .e-input[readonly] {
  border: none !important;
}
.e-ddl .e-input[readonly]:hover {
  border: none !important;
}

.e-grpbtn {
  display: flex;
}

.e-inputbtn.e-btn {
  padding: 0;
  font-size: 0.75rem;
  line-height: 0.75rem;
  height: 32px;
  cursor: pointer;
}
.theme-integra .e-inputbtn.e-btn {
  color: #5c5c5c !important;
}
.theme-integra-dark .e-inputbtn.e-btn {
  color: #fafafa !important;
}
.occidental .e-inputbtn.e-btn {
  font-family: "OpenSans-Regular", sans-serif;
}
.arabic .e-inputbtn.e-btn {
  font-family: "NotoKufiArabic-Regular", sans-serif;
}

.e-waitpopup-pane .e-text {
  font-size: 1rem;
}
.occidental .e-waitpopup-pane .e-text {
  font-family: "OpenSans-Regular", sans-serif !important;
}
.arabic .e-waitpopup-pane .e-text {
  font-family: "NotoKufiArabic-Regular", sans-serif !important;
}

.e-input {
  border: none !important;
}

.e-timewidget {
  width: 100% !important;
}

.e-lv .e-list-hdr {
  width: 100% !important;
}

.e-ddl.e-widget {
  width: 100% !important;
}

.e-widget#incognitas {
  box-sizing: inherit !important;
}

.e-treeview ul:first-child {
  padding-left: 0;
}

.e-treeview ul:first-child, .e-treeview {
  min-height: 227px;
}

.e-grid,
.e-grid .e-gridcontent {
  width: auto !important;
}

.e-grid .e-table, .e-grid .e-gridsummary {
  table-layout: inherit !important;
}

.e-ddl {
  height: 30.858px;
  border-radius: 4px;
}

.e-ddl.e-popactive .e-in-wrap:before,
.e-ddl.e-popactive .e-in-wrap:after {
  height: 1px;
}
.theme-integra .e-ddl.e-popactive .e-in-wrap:before,
.theme-integra .e-ddl.e-popactive .e-in-wrap:after {
  background: #319acb;
}
.theme-integra-dark .e-ddl.e-popactive .e-in-wrap:before,
.theme-integra-dark .e-ddl.e-popactive .e-in-wrap:after {
  background: #319acb;
}

.e-ddl .e-in-wrap {
  border-radius: 4px;
  border-color: transparent !important;
}

.e-ddl .e-in-wrap.e-disable {
  border-radius: 2px;
  /*    cursor: not-allowed;*/
}
.theme-integra .e-ddl .e-in-wrap.e-disable {
  border: 1px solid #d5d5d5;
}
.theme-integra-dark .e-ddl .e-in-wrap.e-disable {
  border: 1px solid #31383c;
}

.e-ddl-popup div > ul {
  padding: 12px;
}

.e-ddl-popup div > ul li, .e-ddl-popup div > .e-listbox li {
  padding: 8px;
}

.e-ddl.e-widget.multicheckDDL .e-ul.e-boxes {
  overflow: hidden;
  text-overflow: ellipsis;
}

.e-ddl .e-in-wrap,
.e-ul.e-boxes {
  background: transparent !important;
}

.theme-integra .e-ul.e-boxes.e-disable {
  background: #f7f7f7;
  color: #8e8e8e !important;
}
.theme-integra-dark .e-ul.e-boxes.e-disable {
  background: #3f484d;
  color: #c6c6c6 !important;
}

.theme-integra .e-ddl .e-select:hover,
.theme-integra .e-ddl.e-rtl .e-select:hover {
  background: #f3f3f3;
}
.theme-integra-dark .e-ddl .e-select:hover,
.theme-integra-dark .e-ddl.e-rtl .e-select:hover {
  background: #373f44;
}

.theme-integra .e-select.e-disable:hover {
  background: #bbbbbb;
}
.theme-integra-dark .e-select.e-disable:hover {
  background: #292f32;
}

.theme-integra .e-ddl.e-widget:hover {
  border-top: 1px solid #bbbbbb !important;
  border-right: 1px solid #bbbbbb !important;
  border-bottom: 1px solid #bbbbbb !important;
}
.theme-integra-dark .e-ddl.e-widget:hover {
  border-top: 1px solid #292f32 !important;
  border-right: 1px solid #292f32 !important;
  border-bottom: 1px solid #292f32 !important;
}

.e-ddl-popup,
.e-ddl .e-options,
.e-ddl-popup .e-atc.e-search {
  font-size: 14px;
}
.theme-integra .e-ddl-popup,
.theme-integra .e-ddl .e-options,
.theme-integra .e-ddl-popup .e-atc.e-search {
  background: #f3f3f3;
  color: #5c5c5c;
  border-color: #d5d5d5 !important;
}
.theme-integra-dark .e-ddl-popup,
.theme-integra-dark .e-ddl .e-options,
.theme-integra-dark .e-ddl-popup .e-atc.e-search {
  background: #373f44;
  color: #fafafa;
  border-color: #31383c !important;
}

.theme-integra .disabled .e-ddl.e-widget {
  background-color: #f7f7f7 !important;
  color: #8e8e8e !important;
}
.theme-integra-dark .disabled .e-ddl.e-widget {
  background-color: #3f484d !important;
  color: #c6c6c6 !important;
}

.theme-integra .e-ddl.e-widget {
  border: 1px solid #d5d5d5 !important;
}
.theme-integra-dark .e-ddl.e-widget {
  border: 1px solid #31383c !important;
}

.theme-integra .e-ddl.e-widget,
.theme-integra .e-timewidget,
.theme-integra .e-timepicker {
  background: #f3f3f3;
  color: #5c5c5c;
  border-color: #d5d5d5 !important;
}
.theme-integra-dark .e-ddl.e-widget,
.theme-integra-dark .e-timewidget,
.theme-integra-dark .e-timepicker {
  background: #373f44;
  color: #fafafa;
  border-color: #31383c !important;
}

.e-timewidget .e-in-wrap {
  border-color: transparent !important;
}

.theme-integra .e-ddl .e-options.e-active {
  background: #f3f3f3;
  color: #5c5c5c;
  border-color: #d5d5d5 !important;
}
.theme-integra-dark .e-ddl .e-options.e-active {
  background: #373f44;
  color: #fafafa;
  border-color: #31383c !important;
}

.theme-integra .e-atc .e-input {
  background-color: #f3f3f3;
  color: #5c5c5c;
}
.theme-integra-dark .e-atc .e-input {
  background-color: #373f44;
  color: #fafafa;
}

.e-input {
  border: none !important;
}

.e-ddl-popup .e-hover {
  border-radius: 4px;
}
.theme-integra .e-ddl-popup .e-hover {
  color: #5c5c5c;
  background: #d5d5d5;
}
.theme-integra-dark .e-ddl-popup .e-hover {
  color: #fafafa;
  background: #31383c;
}

.e-ddl-popup .e-active {
  border-radius: 4px;
}
.theme-integra .e-ddl-popup .e-active {
  color: #5c5c5c;
  background-color: #d5d5d5;
  border-bottom: none;
}
.theme-integra-dark .e-ddl-popup .e-active {
  color: #fafafa;
  background-color: #31383c;
  border-bottom: none;
}

.e-ddl-popup .e-active.e-hover {
  border-radius: 4px;
}
.theme-integra .e-ddl-popup .e-active.e-hover {
  color: #5c5c5c;
  background: #d5d5d5;
}
.theme-integra-dark .e-ddl-popup .e-active.e-hover {
  color: #fafafa;
  background: #31383c;
}

.e-time-popup .e-active,
.e-timewidget.e-active .e-select,
.e-timewidget.e-active .e-select:hover {
  border-radius: 4px;
}
.theme-integra .e-time-popup .e-active,
.theme-integra .e-timewidget.e-active .e-select,
.theme-integra .e-timewidget.e-active .e-select:hover {
  color: #5c5c5c !important;
}
.theme-integra-dark .e-time-popup .e-active,
.theme-integra-dark .e-timewidget.e-active .e-select,
.theme-integra-dark .e-timewidget.e-active .e-select:hover {
  color: #fafafa !important;
}

.theme-integra .e-timewidget .e-in-wrap:before,
.theme-integra .e-timewidget .e-in-wrap:after {
  background: #319acb;
  color: #319acb !important;
}
.theme-integra-dark .e-timewidget .e-in-wrap:before,
.theme-integra-dark .e-timewidget .e-in-wrap:after {
  background: #319acb;
  color: #319acb !important;
}

.e-timewidget .e-select {
  border-left: none;
}
.theme-integra .e-timewidget .e-select {
  background: #f3f3f3;
  color: #5c5c5c;
}
.theme-integra-dark .e-timewidget .e-select {
  background: #373f44;
  color: #fafafa;
}

.e-ddl .e-select,
.e-ddl .e-icon {
  background-color: transparent;
  border-left: none;
}
.theme-integra .e-ddl .e-select,
.theme-integra .e-ddl .e-icon {
  color: #5c5c5c !important;
}
.theme-integra-dark .e-ddl .e-select,
.theme-integra-dark .e-ddl .e-icon {
  color: #fafafa !important;
}

.e-ddl .e-select:hover {
  background: transparent !important;
}
.theme-integra .e-ddl .e-select:hover {
  border-color: #bbbbbb !important;
}
.theme-integra-dark .e-ddl .e-select:hover {
  border-color: #292f32 !important;
}

.e-ddl .e-in-wrap,
.e-ddl-popup,
.e-ddl .e-options,
.e-ddl-popup .e-atc.e-search {
  border-color: transparent !important;
}

.theme-integra .e-ddl-popup .e-atc.e-search .e-search:before,
.theme-integra .e-ddl-popup .e-atc.e-search .e-cross-circle:before {
  color: #5c5c5c !important;
}
.theme-integra-dark .e-ddl-popup .e-atc.e-search .e-search:before,
.theme-integra-dark .e-ddl-popup .e-atc.e-search .e-cross-circle:before {
  color: #fafafa !important;
}

.e-ddl .e-input,
.e-ddl .e-options {
  font-size: 14px;
}
.theme-integra .e-ddl .e-input,
.theme-integra .e-ddl .e-options {
  background-color: #f3f3f3 !important;
  color: #5c5c5c;
}
.theme-integra-dark .e-ddl .e-input,
.theme-integra-dark .e-ddl .e-options {
  background-color: #373f44 !important;
  color: #fafafa;
}

.e-ddl .e-input[readonly] {
  background-color: transparent !important;
}

li.e-disable {
  cursor: text;
}
.theme-integra li.e-disable {
  background-color: !important;
  color: #8e8e8e !important;
}
.theme-integra-dark li.e-disable {
  background-color: !important;
  color: #c6c6c6 !important;
}

.disabled .e-ddl .e-input[readonly],
.e-ddl .e-input.e-disable[readonly],
.e-select.e-disable {
  pointer-events: none;
}
.theme-integra .disabled .e-ddl .e-input[readonly],
.theme-integra .e-ddl .e-input.e-disable[readonly],
.theme-integra .e-select.e-disable {
  background-color: #f7f7f7 !important;
  color: #8e8e8e !important;
}
.theme-integra-dark .disabled .e-ddl .e-input[readonly],
.theme-integra-dark .e-ddl .e-input.e-disable[readonly],
.theme-integra-dark .e-select.e-disable {
  background-color: #3f484d !important;
  color: #c6c6c6 !important;
}

.theme-integra .e-atc .e-in-wrap:before,
.theme-integra .e-atc .e-in-wrap:after {
  background: #319acb;
}
.theme-integra-dark .e-atc .e-in-wrap:before,
.theme-integra-dark .e-atc .e-in-wrap:after {
  background: #319acb;
}

.theme-integra .e-atc-popup .e-hover {
  background: #d5d5d5;
  color: #8e8e8e;
}
.theme-integra-dark .e-atc-popup .e-hover {
  background: #31383c;
  color: #c6c6c6;
}

.e-ddl-popup .e-atc.e-search .e-input {
  border: none !important;
}

.theme-integra .error .e-ddl .e-icon {
  color: #e37272;
}
.theme-integra-dark .error .e-ddl .e-icon {
  color: #e37272;
}

.theme-integra .error .e-ddl .e-in-wrap {
  border-color: #e37272;
}
.theme-integra-dark .error .e-ddl .e-in-wrap {
  border-color: #e37272;
}

.e-disable {
  /*    cursor: not-allowed;*/
  opacity: 1;
}

/*.disabled .e-ddl {
    cursor: not-allowed;
}*/
.theme-integra .e-radiobtn-wrap .e-circle_01 {
  color: #319acb !important;
  border-color: #d5d5d5 !important;
}
.theme-integra-dark .e-radiobtn-wrap .e-circle_01 {
  color: #319acb !important;
  border-color: #31383c !important;
}

.theme-integra .e-radiobtn-wrap > span {
  background-color: #d5d5d5 !important;
  border-color: #d5d5d5 !important;
}
.theme-integra-dark .e-radiobtn-wrap > span {
  background-color: #31383c !important;
  border-color: #31383c !important;
}

.theme-integra .e-radiobtn-wrap > span.e-rad-active {
  border-color: #319acb !important;
}
.theme-integra-dark .e-radiobtn-wrap > span.e-rad-active {
  border-color: #319acb !important;
}

/** Arbol **/
.theme-integra #treeContainer {
  background-color: #ffffff;
}
.theme-integra-dark #treeContainer {
  background-color: #444e54;
}

#connector_treeVariables.e-treeview {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}
#connector_treeVariables.e-treeview ul:first-child {
  padding: 0;
}

.e-treeview.error {
  border: 1px solid #E37272 !important;
}

.validationErrorPopup {
  background: #FFFFFF !important;
  border: 1px solid #E37272 !important;
  color: #E37272 !important;
}

.validationErrorPopup:before {
  box-shadow: -1px -1px 0px 0px #E37272 !important;
}

.e-chkbox-wrap .e-chk-image.e-stop,
.e-chkbox-wrap .e-chk-image.e-checkmark {
  background-color: #319ACB !important;
}

.e-chkbox-wrap .e-chk-image.e-checkmark:before {
  color: #FFFFFF;
}

.e-chkbox-wrap div > span.e-chk-act {
  border-color: #319ACB !important;
}

.theme-integra .e-treeview .e-active,
.theme-integra #treeVariables_active,
.theme-integra #treeContainer_active,
.theme-integra .e-treeview .e-node-hover {
  color: #8e8e8e;
  background: rgba(49, 154, 203, 0.4);
}
.theme-integra-dark .e-treeview .e-active,
.theme-integra-dark #treeVariables_active,
.theme-integra-dark #treeContainer_active,
.theme-integra-dark .e-treeview .e-node-hover {
  color: #c6c6c6;
  background: rgba(49, 154, 203, 0.4);
}

.theme-integra .e-treeview .e-text,
.theme-integra .e-treeview .e-item .e-icon {
  color: #5c5c5c;
}
.theme-integra-dark .e-treeview .e-text,
.theme-integra-dark .e-treeview .e-item .e-icon {
  color: #fafafa;
}

.theme-integra .e-treeview .e-text:hover {
  color: #8e8e8e;
}
.theme-integra-dark .e-treeview .e-text:hover {
  color: #c6c6c6;
}

#connector_treeVariables.e-treeview {
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.16), 0 2px 2px 0 rgba(0, 0, 0, 0.16), 0 1px 3px 0 rgba(0, 0, 0, 0.16);
}

/** Colorpicker **/
.e-colorwidget.e-widget {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
  border-radius: 0.28571429rem;
  height: 30px;
}
.theme-integra .e-colorwidget.e-widget {
  border: 1px solid #d5d5d5;
  background-color: #f3f3f3;
}
.theme-integra-dark .e-colorwidget.e-widget {
  border: 1px solid #31383c;
  background-color: #373f44;
}

.e-colorwidget .e-selected-color {
  top: 24% !important;
}

.e-uploadbox.e-widget .e-selectpart.e-select {
  padding: 0 1rem;
}

.e-uploadbox.e-widget .e-selectpart.e-select,
.e-btn.e-select.e-flat {
  background: transparent;
  box-shadow: none;
  border-radius: 4px;
}
.theme-integra .e-uploadbox.e-widget .e-selectpart.e-select,
.theme-integra .e-btn.e-select.e-flat {
  color: #5c5c5c;
  border: 1px solid #5c5c5c !important;
}
.theme-integra-dark .e-uploadbox.e-widget .e-selectpart.e-select,
.theme-integra-dark .e-btn.e-select.e-flat {
  color: #fafafa;
  border: 1px solid #fafafa !important;
}
.e-uploadbox.e-widget .e-selectpart.e-select.disabled,
.e-btn.e-select.e-flat.disabled {
  opacity: 1;
}
.theme-integra .e-uploadbox.e-widget .e-selectpart.e-select.disabled,
.theme-integra .e-btn.e-select.e-flat.disabled {
  border: 1px solid #b4b4b4 !important;
  color: #b4b4b4 !important;
}
.theme-integra-dark .e-uploadbox.e-widget .e-selectpart.e-select.disabled,
.theme-integra-dark .e-btn.e-select.e-flat.disabled {
  border: 1px solid #8e9498 !important;
  color: #8e9498 !important;
}
.e-uploadbox.e-widget .e-selectpart.e-select:hover, .e-uploadbox.e-widget .e-selectpart.e-select.active,
.e-btn.e-select.e-flat:hover,
.e-btn.e-select.e-flat.active {
  border-radius: 4px;
}
.theme-integra .e-uploadbox.e-widget .e-selectpart.e-select:hover, .theme-integra .e-uploadbox.e-widget .e-selectpart.e-select.active,
.theme-integra .e-btn.e-select.e-flat:hover,
.theme-integra .e-btn.e-select.e-flat.active {
  border: 1px solid #5c5c5c !important;
  color: #5c5c5c !important;
  background: rgba(92, 92, 92, 0.1) !important;
}
.theme-integra-dark .e-uploadbox.e-widget .e-selectpart.e-select:hover, .theme-integra-dark .e-uploadbox.e-widget .e-selectpart.e-select.active,
.theme-integra-dark .e-btn.e-select.e-flat:hover,
.theme-integra-dark .e-btn.e-select.e-flat.active {
  border: 1px solid #fafafa !important;
  color: #fafafa !important;
  background: rgba(250, 250, 250, 0.08) !important;
}
.theme-integra .e-uploadbox.e-widget .e-selectpart.e-select.active,
.theme-integra .e-btn.e-select.e-flat.active {
  box-shadow: rgba(213, 213, 213, 0.75) !important;
}
.theme-integra-dark .e-uploadbox.e-widget .e-selectpart.e-select.active,
.theme-integra-dark .e-btn.e-select.e-flat.active {
  box-shadow: gba(142, 148, 152, 0.3) !important;
}

.e-applyButton.e-btn.e-select.e-flat {
  border-radius: 4px;
}
.theme-integra .e-applyButton.e-btn.e-select.e-flat {
  color: #fafafa;
  border: 1px solid #319acb !important;
  background: #319acb !important;
}
.theme-integra-dark .e-applyButton.e-btn.e-select.e-flat {
  color: #fafafa;
  border: 1px solid #319acb !important;
  background: #319acb !important;
}
.e-applyButton.e-btn.e-select.e-flat.disabled {
  opacity: 1;
}
.theme-integra .e-applyButton.e-btn.e-select.e-flat.disabled {
  color: rgba(250, 250, 250, 0.8) !important;
  background: #97cce4 !important;
}
.theme-integra-dark .e-applyButton.e-btn.e-select.e-flat.disabled {
  color: #8e9498 !important;
  background: #25576e !important;
}
.theme-integra .e-applyButton.e-btn.e-select.e-flat:hover, .theme-integra .e-applyButton.e-btn.e-select.e-flat.active {
  border: 1px solid #387c9b !important;
  color: #fafafa !important;
  background: #387c9b !important;
}
.theme-integra-dark .e-applyButton.e-btn.e-select.e-flat:hover, .theme-integra-dark .e-applyButton.e-btn.e-select.e-flat.active {
  border: 1px solid #387c9b !important;
  color: #fafafa !important;
  background: #387c9b !important;
}
.theme-integra .e-applyButton.e-btn.e-select.e-flat.active {
  box-shadow: 0px 0px 1px 2px #319ACB !important;
}
.theme-integra-dark .e-applyButton.e-btn.e-select.e-flat.active {
  box-shadow: 0px 0px 1px 2px #319ACB !important;
}

.e-uploadbox.e-js.e-widget {
  height: 32px !important;
  width: fit-content !important;
}

.theme-integra .e-uploadbox.e-widget .e-inputbtn {
  color: #5c5c5c !important;
}
.theme-integra-dark .e-uploadbox.e-widget .e-inputbtn {
  color: #fafafa !important;
}
.theme-integra .e-uploadbox.e-widget .e-inputbtn:hover, .theme-integra .e-uploadbox.e-widget .e-inputbtn.active {
  color: #5c5c5c !important;
}
.theme-integra-dark .e-uploadbox.e-widget .e-inputbtn:hover, .theme-integra-dark .e-uploadbox.e-widget .e-inputbtn.active {
  color: #fafafa !important;
}

/** Scada palette **/
.theme-integra .e-datavisualization-symbolpalette {
  border: #ffffff !important;
  background: #ffffff !important;
}
.theme-integra-dark .e-datavisualization-symbolpalette {
  border: #444e54 !important;
  background: #444e54 !important;
}

.theme-integra .e-datavisualization-symbolpalette .e-header {
  background: #ffffff !important;
  color: #5c5c5c !important;
  border-bottom-color: #bbbbbb;
}
.theme-integra-dark .e-datavisualization-symbolpalette .e-header {
  background: #444e54 !important;
  color: #fafafa !important;
  border-bottom-color: #292f32;
}

.theme-integra .e-datavisualization-symbolpalette .e-header:hover,
.theme-integra .e-datavisualization-symbolpalette .e-header.collapsed.selected,
.theme-integra .e-datavisualization-symbolpalette .e-header.expanded.selected {
  background: #319acb !important;
  color: #fafafa !important;
}
.theme-integra-dark .e-datavisualization-symbolpalette .e-header:hover,
.theme-integra-dark .e-datavisualization-symbolpalette .e-header.collapsed.selected,
.theme-integra-dark .e-datavisualization-symbolpalette .e-header.expanded.selected {
  background: #319acb !important;
  color: #fafafa !important;
}

.theme-integra .e-datavisualization-symbolpalette .e-header.expanded.selected,
.theme-integra .e-datavisualization-symbolpalette .e-header.collapsed.selected {
  color: #fafafa !important;
}
.theme-integra-dark .e-datavisualization-symbolpalette .e-header.expanded.selected,
.theme-integra-dark .e-datavisualization-symbolpalette .e-header.collapsed.selected {
  color: #fafafa !important;
}

.theme-integra .e-datavisualization-symbolpalette .e-paletteItem.selected,
.theme-integra .e-datavisualization-symbolpalette .e-paletteItem:hover {
  background-color: #8e8e8e;
}
.theme-integra-dark .e-datavisualization-symbolpalette .e-paletteItem.selected,
.theme-integra-dark .e-datavisualization-symbolpalette .e-paletteItem:hover {
  background-color: #c6c6c6;
}

.theme-integra .e-datavisualization-symbolpalette .e-svg-container svg {
  color: #5c5c5c !important;
}
.theme-integra-dark .e-datavisualization-symbolpalette .e-svg-container svg {
  color: #fafafa !important;
}

.theme-integra .e-datavisualization-symbolpalette .e-text-container {
  color: #5c5c5c !important;
}
.theme-integra-dark .e-datavisualization-symbolpalette .e-text-container {
  color: #fafafa !important;
}

/** Diagrama **/
.theme-integra .e-menu,
.theme-integra .e-menu-res-wrap .e-in-wrap.e-menu-res-in-wrap,
.theme-integra .e-menu.e-vertical,
.theme-integra .e-menu.e-vertical .e-list > ul,
.theme-integra .e-menu.e-context,
.theme-integra .e-menu.e-context .e-list > ul {
  background: #ffffff;
}
.theme-integra-dark .e-menu,
.theme-integra-dark .e-menu-res-wrap .e-in-wrap.e-menu-res-in-wrap,
.theme-integra-dark .e-menu.e-vertical,
.theme-integra-dark .e-menu.e-vertical .e-list > ul,
.theme-integra-dark .e-menu.e-context,
.theme-integra-dark .e-menu.e-context .e-list > ul {
  background: #444e54;
}

.e-context.e-menu .e-list > a.e-menulink {
  min-width: inherit;
}
.theme-integra .e-context.e-menu .e-list > a.e-menulink {
  color: #5c5c5c;
}
.theme-integra-dark .e-context.e-menu .e-list > a.e-menulink {
  color: #fafafa;
}

.theme-integra .e-menu.e-context > .e-list > .e-menulink > span,
.theme-integra .e-menu.e-context li.e-list > ul li.e-list > .e-menulink span,
.theme-integra .e-menu li.e-list > .e-menulink > img,
.theme-integra .e-menu li.e-list > .e-menulink > div,
.theme-integra .e-menu li.e-list > .e-menulink > span {
  filter: #5c5c5c;
}
.theme-integra-dark .e-menu.e-context > .e-list > .e-menulink > span,
.theme-integra-dark .e-menu.e-context li.e-list > ul li.e-list > .e-menulink span,
.theme-integra-dark .e-menu li.e-list > .e-menulink > img,
.theme-integra-dark .e-menu li.e-list > .e-menulink > div,
.theme-integra-dark .e-menu li.e-list > .e-menulink > span {
  filter: #fafafa;
}

.theme-integra .e-menu .e-list > .e-menulink > span.e-icon.e-arrowhead-right:before {
  color: #319acb !important;
}
.theme-integra-dark .e-menu .e-list > .e-menulink > span.e-icon.e-arrowhead-right:before {
  color: #319acb !important;
}

/** Canvas **/
.e-scrollbar {
  background-color: transparent;
}

.e-ddl .e-icon {
  margin-top: -6px;
}

.e-ddl .e-select {
  width: 28px;
}

.e-ddl.e-widget.e-popactive .e-select .e-icon {
  margin-top: -2px;
}

.e-arrowhead-down:before,
.e-icon.e-down-arrow:before,
.e-icon.e-arrow-sans-down:before {
  content: "\e817";
}

.e-icon.e-arrow-sans-down {
  font-size: 14px;
}

.theme-integra .e-disable .e-icon.e-arrow-sans-down {
  color: #8e8e8e !important;
}
.theme-integra-dark .e-disable .e-icon.e-arrow-sans-down {
  color: #c6c6c6 !important;
}

.theme-integra .e-colorwidget .e-in-wrap.e-box .e-icon.e-arrow-sans-down:before {
  color: #5c5c5c !important;
}
.theme-integra-dark .e-colorwidget .e-in-wrap.e-box .e-icon.e-arrow-sans-down:before {
  color: #fafafa !important;
}

.theme-integra .e-colorwidget .e-in-wrap.e-box:hover,
.theme-integra .e-split.e-widget.e-active .e-splitarrowright,
.theme-integra .e-split.e-widget:focus {
  background-color: #f3f3f3;
}
.theme-integra-dark .e-colorwidget .e-in-wrap.e-box:hover,
.theme-integra-dark .e-split.e-widget.e-active .e-splitarrowright,
.theme-integra-dark .e-split.e-widget:focus {
  background-color: #373f44;
}

.theme-integra .e-split.e-widget:focus,
.theme-integra .e-split.e-widget:focus:hover {
  border: 1px solid #d5d5d5;
}
.theme-integra-dark .e-split.e-widget:focus,
.theme-integra-dark .e-split.e-widget:focus:hover {
  border: 1px solid #31383c;
}

.theme-integra .e-colorpicker.e-popup {
  background-color: #f3f3f3;
  border-color: #d5d5d5;
}
.theme-integra-dark .e-colorpicker.e-popup {
  background-color: #373f44;
  border-color: #31383c;
}

/** Errors **/
.e-in-wrap.e-box.is-invalid {
  border-color: #E37272 !important;
  box-shadow: 0px 0px 1px 2px #E37272 !important;
}

.theme-integra .e-chkbox-wrap .e-text {
  color: #5c5c5c;
}
.theme-integra-dark .e-chkbox-wrap .e-text {
  color: #fafafa;
}

.theme-integra .dropdown-item-separator {
  border-top: 1px solid #d5d5d5;
}
.theme-integra-dark .dropdown-item-separator {
  border-top: 1px solid #31383c;
}

.disabled .e-ddl.e-widget .e-in-wrap.e-box,
.e-ddl.e-widget.disabled .e-in-wrap.e-box {
  line-height: 1.21428571em;
  font-size: 12px;
  padding: 0.5rem;
  border-radius: 0.25rem;
}
.theme-integra .disabled .e-ddl.e-widget .e-in-wrap.e-box,
.theme-integra .e-ddl.e-widget.disabled .e-in-wrap.e-box {
  background-color: !important;
  color: #8e8e8e !important;
}
.theme-integra-dark .disabled .e-ddl.e-widget .e-in-wrap.e-box,
.theme-integra-dark .e-ddl.e-widget.disabled .e-in-wrap.e-box {
  background-color: !important;
  color: #c6c6c6 !important;
}
.occidental .disabled .e-ddl.e-widget .e-in-wrap.e-box,
.occidental .e-ddl.e-widget.disabled .e-in-wrap.e-box {
  font-family: "OpenSans-Regular", sans-serif;
}
.arabic .disabled .e-ddl.e-widget .e-in-wrap.e-box,
.arabic .e-ddl.e-widget.disabled .e-in-wrap.e-box {
  font-family: "NotoKufiArabic-Regular", sans-serif;
}

.disabled .e-select,
.e-select.e-disable {
  pointer-events: none;
}
.theme-integra .disabled .e-select,
.theme-integra .e-select.e-disable {
  background: #f7f7f7;
  color: #8e8e8e !important;
}
.theme-integra-dark .disabled .e-select,
.theme-integra-dark .e-select.e-disable {
  background: #3f484d;
  color: #c6c6c6 !important;
}

.theme-integra .disabled .e-ddl.e-widget .e-in-wrap.e-box,
.theme-integra .e-ddl.e-widget.disabled .e-in-wrap.e-box {
  background: #f3f3f3;
  border: 1px solid #d5d5d5 !important;
}
.theme-integra-dark .disabled .e-ddl.e-widget .e-in-wrap.e-box,
.theme-integra-dark .e-ddl.e-widget.disabled .e-in-wrap.e-box {
  background: #373f44;
  border: 1px solid #31383c !important;
}

.theme-integra .e-timepicker.disabled {
  color: #8e8e8e !important;
  background: #f7f7f7 !important;
}
.theme-integra-dark .e-timepicker.disabled {
  color: #c6c6c6 !important;
  background: #3f484d !important;
}

.e-ddl-popup .e-check-act {
  border-radius: 0.25rem !important;
  background-color: #319ACB !important;
  border-color: #319ACB !important;
}

.e-ddl-popup .e-ddltxt {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}

.e-ddl-popup div > ul li {
  display: flex;
}

.e-ddl-popup div > ul li span:nth-child(2) {
  flex: 1;
}

.form-control.e-autocomplete.e-js.e-input {
  border: none !important;
}

.form-control.e-autocomplete.e-js.e-input:focus {
  box-shadow: none !important;
}

.e-atc-popup.e-popup.e-widget.e-box.form-control.e-scroller.e-js {
  width: max-content !important;
}

.theme-integra .e-atc-popup .e-activeli, .theme-integra .e-atc-popup .e-content .e-activeli {
  background: #d5d5d5;
}
.theme-integra-dark .e-atc-popup .e-activeli, .theme-integra-dark .e-atc-popup .e-content .e-activeli {
  background: #31383c;
}

.theme-integra .e-atc-popup .e-activeli .e-hilight-txt, .theme-integra .e-atc-popup .e-content .e-activeli .e-hilight-txt {
  color: #319acb;
}
.theme-integra-dark .e-atc-popup .e-activeli .e-hilight-txt, .theme-integra-dark .e-atc-popup .e-content .e-activeli .e-hilight-txt {
  color: #319acb;
}

.e-ddl .loader {
  top: 0;
  right: 0;
  flex-direction: row;
}
.e-ddl .loader .spinner-border {
  width: 1rem;
  height: 1rem;
}

/** Geocoders lib **/
#gcd-container {
  top: 8px;
  left: 8px;
  font-size: 14px;
}
#gcd-container .gcd-gl-control {
  background: none;
  height: unset;
  width: unset;
}
#gcd-container .gcd-gl-control #gcd-button-control {
  position: unset;
  width: 36px;
  height: 33px;
  line-height: unset;
  border: 1px solid;
  border-radius: 4px;
  background-size: 25px;
}
.theme-integra #gcd-container .gcd-gl-control #gcd-button-control {
  border-color: #5c5c5c !important;
  color: #5c5c5c !important;
  background-color: #f3f3f3 !important;
}
.theme-integra-dark #gcd-container .gcd-gl-control #gcd-button-control {
  border-color: #fafafa !important;
  color: #fafafa !important;
  background-color: #373f44 !important;
}
#gcd-container .gcd-gl-control #gcd-button-control:hover {
  outline: unset;
}
.theme-integra #gcd-container .gcd-gl-control #gcd-button-control:hover {
  border-color: #5c5c5c !important;
  color: #5c5c5c !important;
  background-color: #ffffff !important;
}
.theme-integra-dark #gcd-container .gcd-gl-control #gcd-button-control:hover {
  border-color: #fafafa !important;
  color: #fafafa !important;
  background-color: #444e54 !important;
}
#gcd-container .gcd-gl-control #gcd-input-query {
  left: 3.2em;
  top: 7px;
  border-radius: 4px;
  width: 15.84375em;
}
.theme-integra #gcd-container .gcd-gl-control #gcd-input-query {
  border-color: #d5d5d5 !important;
  color: #5c5c5c !important;
  background-color: #f3f3f3 !important;
}
.theme-integra-dark #gcd-container .gcd-gl-control #gcd-input-query {
  border-color: #31383c !important;
  color: #fafafa !important;
  background-color: #373f44 !important;
}
#gcd-container .gcd-gl-control #gcd-input-reset {
  line-height: 43px;
  right: 4px;
  top: 1px;
}
.theme-integra #gcd-container .gcd-gl-control #gcd-input-reset:after {
  color: #5c5c5c !important;
}
.theme-integra-dark #gcd-container .gcd-gl-control #gcd-input-reset:after {
  color: #fafafa !important;
}
#gcd-container .gcd-gl-control.gcd-gl-expanded {
  width: 19.5em;
  padding: 7px;
}
.theme-integra #gcd-container .gcd-gl-control.gcd-gl-expanded {
  background-color: #ffffff !important;
}
.theme-integra-dark #gcd-container .gcd-gl-control.gcd-gl-expanded {
  background-color: #444e54 !important;
}
#gcd-container .gcd-gl-control.gcd-gl-expanded #gcd-button-control {
  width: 30px;
  height: 27px;
}
.theme-integra #gcd-container .gcd-gl-control.gcd-gl-expanded #gcd-button-control {
  border-color: #319acb !important;
  color: #fafafa !important;
  background-color: #319acb !important;
}
.theme-integra-dark #gcd-container .gcd-gl-control.gcd-gl-expanded #gcd-button-control {
  border-color: #319acb !important;
  color: #fafafa !important;
  background-color: #319acb !important;
}
.theme-integra #gcd-container .gcd-gl-control.gcd-gl-expanded #gcd-button-control:hover {
  background-color: #387c9b !important;
  border-color: #387c9b !important;
}
.theme-integra-dark #gcd-container .gcd-gl-control.gcd-gl-expanded #gcd-button-control:hover {
  background-color: #387c9b !important;
  border-color: #387c9b !important;
}
#gcd-container .gcd-gl-result {
  left: 3.2em;
  top: 2.9em;
  width: 15.8em;
}
.theme-integra #gcd-container .gcd-gl-result > li {
  background: #ffffff !important;
  border-bottom: 1px solid !important;
}
.theme-integra #gcd-container .gcd-gl-result > li span {
  color: #5c5c5c !important;
}
.theme-integra-dark #gcd-container .gcd-gl-result > li {
  background: #444e54 !important;
  border-bottom: 1px solid !important;
}
.theme-integra-dark #gcd-container .gcd-gl-result > li span {
  color: #fafafa !important;
}
#gcd-container .gcd-gl-result > li a:hover {
  background: rgba(0, 0, 0, 0.12);
}

/** Dashboard de inicio **/
#landingPageGridStack {
  margin-right: -10px;
  margin-left: -10px;
}
@media (max-width: 991.98px) {
  #landingPageGridStack {
    margin-right: 0;
    margin-left: 0;
  }
}
#landingPageGridStack .grid-stack-placeholder .placeholder-content {
  background-color: unset;
}
#landingPageGridStack .map {
  width: 100%;
  height: 100%;
}
#landingPageGridStack .map .gm-style-iw-c {
  padding-bottom: 12px !important;
  padding-right: 12px !important;
  border-radius: 0px !important;
}
#landingPageGridStack .map .gm-style-iw-d {
  overflow: hidden !important;
}
#landingPageGridStack .map input.e-input[readonly] {
  background: transparent !important;
}
#landingPageGridStack .grid-stack-item {
  pointer-events: visible !important;
}
#landingPageGridStack .grid-stack-item .grid-stack-item-content {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  overflow-x: hidden !important;
  overflow-y: hidden !important;
  height: initial;
  width: initial;
  inset: 10px;
}
@media (max-width: 991.98px) {
  #landingPageGridStack .grid-stack-item .grid-stack-item-content {
    inset: 0 0 1rem 0;
  }
}
#landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container {
  height: 100%;
}
#landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame {
  height: 100%;
}
#landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-container {
  height: 100%;
  border: none;
}
#landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-container .card-header {
  cursor: default !important;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.theme-integra #landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-container .card-header {
  color: #5c5c5c;
}
.theme-integra-dark #landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-container .card-header {
  color: #fafafa;
}
.theme-integra #landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-container .card-header {
  background: #f7f7f7;
  border-bottom: 1px solid #f7f7f7;
}
.theme-integra-dark #landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-container .card-header {
  background: #3f484d;
  border-bottom: 1px solid #3f484d;
}
#landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-container .card-header .widget-drag-button {
  cursor: grab;
}
#landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-container .card-header .dropleft .dropdown-toggle::before {
  display: none;
}
#landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-container .card-header .dropleft .dropdown-menu {
  top: auto !important;
  left: 18px !important;
}
.theme-integra #landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-container .card-header .dropleft .dropdown-menu {
  background-color: #ffffff;
}
.theme-integra-dark #landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-container .card-header .dropleft .dropdown-menu {
  background-color: #444e54;
}
#landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-container .card-header .dropleft .dropdown-menu .dropdown-item a {
  font-size: 14px;
}
.theme-integra #landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-container .card-header .dropleft .dropdown-menu .dropdown-item a {
  color: #5c5c5c;
}
.theme-integra-dark #landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-container .card-header .dropleft .dropdown-menu .dropdown-item a {
  color: #fafafa;
}
.theme-integra #landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-container .card-header .dropleft .dropdown-menu .dropdown-item:hover {
  background-color: #ffffff;
}
.theme-integra-dark #landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-container .card-header .dropleft .dropdown-menu .dropdown-item:hover {
  background-color: #444e54;
}
.theme-integra #landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-container .card-header .dropleft .dropdown-menu .dropdown-item:hover a {
  color: #8e8e8e;
}
.theme-integra-dark #landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-container .card-header .dropleft .dropdown-menu .dropdown-item:hover a {
  color: #c6c6c6;
}
#landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-container .card-body {
  height: calc(100% - 48.2px);
  padding: 0 1rem !important;
}
.theme-integra #landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-container .card-body {
  background: #ffffff;
}
.theme-integra-dark #landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-container .card-body {
  background: #444e54;
}
#landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-container .card-body .widgetContent {
  overflow-y: hidden;
  overflow-x: hidden;
  height: 100%;
}
#landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-container .card-body .widgetContent .itemList {
  height: calc(100% - 64px);
  overflow-y: auto;
  overflow-x: hidden;
}
#landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-container .card-body .widgetContent .itemList .item {
  display: flex;
  align-items: stretch;
  padding-bottom: 0.85rem;
}
@media (min-width: 767px) and (max-width: 1199.98px) {
  #landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-container .card-body .widgetContent .itemList .item {
    padding-bottom: 1rem;
  }
}
@media (max-width: 766.98px) {
  #landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-container .card-body .widgetContent .itemList .item {
    padding-bottom: 1rem;
  }
}
.occidental #landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-container .card-body .widgetContent .itemList .item .date {
  min-width: 132px;
}
.arabic #landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-container .card-body .widgetContent .itemList .item .date {
  min-width: 180px;
}
#landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-container .card-body .widgetContent .itemList .item .date .icon {
  padding-right: 0.5rem;
}
@media (min-width: 767px) and (max-width: 1199.98px) {
  #landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-container .card-body .widgetContent .itemList .item .date p {
    margin-bottom: 0;
  }
}
@media (max-width: 766.98px) {
  #landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-container .card-body .widgetContent .itemList .item .date p {
    margin-bottom: 0;
  }
}
.theme-integra #landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-container .card-body .widgetContent .itemList .item .date p {
  color: #5c5c5c;
}
.theme-integra-dark #landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-container .card-body .widgetContent .itemList .item .date p {
  color: #fafafa;
}
#landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-container .card-body .widgetContent .itemList .item .description {
  height: calc(100% - 64px);
  width: calc(100% - 64px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-container .card-body .widgetContent .itemList .item .description .itemLink {
  cursor: pointer;
}
#landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-container .card-body .widgetContent .itemList .item .alarm {
  width: 100%;
  display: flex;
}
@media (min-width: 767px) and (max-width: 1199.98px) {
  #landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-container .card-body .widgetContent .itemList .item .alarm {
    flex-direction: column;
  }
}
@media (max-width: 991.98px) {
  #landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-container .card-body .widgetContent .itemList .item .alarm {
    flex-direction: row;
  }
}
@media (max-width: 766.98px) {
  #landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-container .card-body .widgetContent .itemList .item .alarm {
    flex-direction: column;
  }
}
#landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-container .card-body .widgetContent .itemList .item .alarm .description {
  height: 100%;
  width: calc(100% - 38px);
}
@media (min-width: 767px) and (max-width: 1199.98px) {
  #landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-container .card-body .widgetContent .itemList .item .alarm .description {
    width: calc(100% - 8px);
  }
}
@media (max-width: 991.98px) {
  #landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-container .card-body .widgetContent .itemList .item .alarm .description {
    width: calc(100% - 38px);
  }
}
@media (max-width: 766.98px) {
  #landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-container .card-body .widgetContent .itemList .item .alarm .description {
    width: calc(100% - 22px);
  }
}
#landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-container .card-body .widgetContent .itemList .item .alarm .description .itemLink {
  cursor: context-menu;
}
#landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-container .card-body .widgetContent .itemList .item .item.no-icon .date {
  min-width: 95px;
}
#landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-container .card-body .widgetContent .itemList .item .item.no-icon .description {
  width: calc(100% - 95px);
}
#landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-container .card-body .widgetContent.alarmWidget .itemList {
  height: calc(100% - 35px);
}
#landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .card-header .drag-icon {
  display: none;
}
#landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .card-header:hover .drag-icon {
  display: inline-block;
}
#landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .card-header .widget-icon {
  display: inline-block;
  width: 14px;
}
#landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .card-header:hover .widget-icon {
  display: none;
}
#landingPageGridStack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-drag-button {
  padding-right: 1rem;
}

#landingPageGridStack.grid-stack-1 .grid-stack-item {
  position: relative;
  top: auto;
}

/** Dashboards **/
#primaryContainer,
#secondaryContainer {
  display: block;
}

#primaryContainer .grid-stack-item-content {
  inset: 5px 10px !important;
}

.grid-stack .grid-stack-placeholder .placeholder-content {
  background-color: unset;
}
.theme-integra .grid-stack .grid-stack-placeholder .placeholder-content {
  border: 1px dashed #bbbbbb;
}
.theme-integra-dark .grid-stack .grid-stack-placeholder .placeholder-content {
  border: 1px dashed #292f32;
}
.grid-stack .grid-stack-item {
  pointer-events: visible !important;
}
.grid-stack .grid-stack-item .grid-stack-item-content {
  overflow: visible !important;
  z-index: auto !important;
  height: calc(100% - 10px);
}
.theme-integra .grid-stack .grid-stack-item .grid-stack-item-content {
  background: #f7f7f7;
}
.theme-integra-dark .grid-stack .grid-stack-item .grid-stack-item-content {
  background: #3f484d;
}
.grid-stack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container {
  height: 100%;
  width: 100%;
}
.theme-integra .grid-stack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container {
  background: #ffffff;
}
.theme-integra-dark .grid-stack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container {
  background: #444e54;
}
.grid-stack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame {
  display: flex;
  flex-direction: column;
  height: inherit;
  width: inherit;
  overflow: visible;
}
.grid-stack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-drag-button {
  cursor: grab;
}
.grid-stack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-toolbar {
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem;
  z-index: 5;
  visibility: hidden;
  opacity: 0.8;
}
.theme-integra .grid-stack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-toolbar {
  background-color: #ffffff;
  color: #5c5c5c;
}
.theme-integra-dark .grid-stack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-toolbar {
  background-color: #444e54;
  color: #fafafa;
}
.grid-stack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-toolbar .dropdown-toggle::before {
  display: none;
}
.grid-stack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-toolbar .dropdown-menu {
  top: auto !important;
  left: 18px !important;
}
.theme-integra .grid-stack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-toolbar .dropdown-menu {
  background-color: #ffffff;
  color: #5c5c5c;
}
.theme-integra-dark .grid-stack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-toolbar .dropdown-menu {
  background-color: #444e54;
  color: #fafafa;
}
.theme-integra .grid-stack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-toolbar .dropdown-menu .dropdown-item a {
  color: #5c5c5c !important;
}
.theme-integra-dark .grid-stack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-toolbar .dropdown-menu .dropdown-item a {
  color: #fafafa !important;
}
.theme-integra .grid-stack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-toolbar .dropdown-menu .dropdown-item:hover, .theme-integra .grid-stack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-toolbar .dropdown-menu .dropdown-item:focus {
  background-color: transparent !important;
}
.theme-integra-dark .grid-stack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-toolbar .dropdown-menu .dropdown-item:hover, .theme-integra-dark .grid-stack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-toolbar .dropdown-menu .dropdown-item:focus {
  background-color: transparent !important;
}
.theme-integra .grid-stack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-toolbar .dropdown-menu .dropdown-item:hover a, .theme-integra .grid-stack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-toolbar .dropdown-menu .dropdown-item:focus a {
  color: #8e8e8e !important;
}
.theme-integra-dark .grid-stack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-toolbar .dropdown-menu .dropdown-item:hover a, .theme-integra-dark .grid-stack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame .widget-toolbar .dropdown-menu .dropdown-item:focus a {
  color: #c6c6c6 !important;
}
.grid-stack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-frame:hover .widget-toolbar {
  visibility: visible;
}
.grid-stack .grid-stack-item .grid-stack-item-content .grid-stack-outer-container .widget-content {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
}

.widget-content > div {
  display: flex;
  flex-direction: column;
  justify-content: space-around !important;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0.5rem;
}

.widget-content > div.justify-center {
  justify-content: center;
}

.widget-content > div > .widget-content-image {
  height: 100%;
  width: 100%;
  border: none;
  padding-top: 0.2rem;
}

.widget-content > div > .widget-content-title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.widget-content > div > .widget-content-title.flex-column {
  flex-direction: column;
}

.widget-content > div > .widget-content-chart {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 90%;
}

.widget-content > div > .widget-content-chart.initial-height {
  height: initial;
}

.widget-content > div > .widget-content-chartLegend {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 90%;
}

.widget-content > div > .widget-content-chartLegend > .widget-content-legend {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.widget-content > div > .widget-content-chartLegend .divider {
  width: 75%;
  height: 1.9px;
  opacity: 0.2;
  margin-bottom: 6px;
  margin-top: 6px;
}

.widget-content > div > .widget-content-chart > .widget-chartParent {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.widget-content > div > .widget-content-chart > .widget-chart,
.widget-content > div > .widget-content-chart > .widget-chartParent > .widget-chart {
  width: inherit;
  height: inherit;
}

.widget-content > div > .widget-content-chart > .widget-chartParent > .widget-chart > .highcharts-container {
  max-width: 100% !important;
}
.widget-content > div > .widget-content-chart > .widget-chartParent > .widget-chart > .highcharts-container svg {
  max-width: 100% !important;
}

.widget-content-footer {
  height: 15%;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}

/** Modales **/
.modal-content {
  border-radius: 0;
  border: none;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}
.theme-integra .modal-content {
  background-color: #ffffff;
  color: #5c5c5c;
}
.theme-integra-dark .modal-content {
  background-color: #444e54;
  color: #fafafa;
}
.modal-content .modal-header {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border: none;
  padding: 0.75rem 1rem;
}
.theme-integra .modal-content .modal-header {
  color: #5c5c5c;
  background-color: #f7f7f7;
}
.theme-integra-dark .modal-content .modal-header {
  color: #fafafa;
  background-color: #3f484d;
}
.modal-content .modal-header .close {
  padding: 0;
  margin: 0;
  font-weight: 400;
  text-shadow: none;
}
.theme-integra .modal-content .modal-header .close {
  color: #5c5c5c;
}
.theme-integra-dark .modal-content .modal-header .close {
  color: #fafafa;
}
.modal-content .modal-body {
  border-radius: 0;
  padding: 40px 0;
  white-space: pre-wrap;
  display: flex;
  align-items: center;
}
.modal-content .modal-body .modal-icon {
  padding: 2px 1rem 2px 1.5rem;
  flex: 0;
  display: flex;
}
.theme-integra .modal-content .modal-body .modal-icon.info {
  color: #179ce9;
}
.theme-integra-dark .modal-content .modal-body .modal-icon.info {
  color: #7ac8f5;
}
.theme-integra .modal-content .modal-body .modal-icon.success {
  color: #92c089;
}
.theme-integra-dark .modal-content .modal-body .modal-icon.success {
  color: #92c089;
}
.theme-integra .modal-content .modal-body .modal-icon.error, .theme-integra .modal-content .modal-body .modal-icon.danger {
  color: #e37272;
}
.theme-integra-dark .modal-content .modal-body .modal-icon.error, .theme-integra-dark .modal-content .modal-body .modal-icon.danger {
  color: #e37272;
}
.theme-integra .modal-content .modal-body .modal-icon.warning {
  color: #e9c417;
}
.theme-integra-dark .modal-content .modal-body .modal-icon.warning {
  color: #e9c417;
}
.modal-content .modal-footer {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border: none;
  padding: 0.75rem 1rem;
}
.theme-integra .modal-content .modal-footer {
  background: #f7f7f7;
}
.theme-integra-dark .modal-content .modal-footer {
  background: #3f484d;
}
.modal-content .modal-footer > * {
  margin: 0;
}

/** Alerts **/
.alert {
  top: 72px;
  width: 360px;
  max-width: 360px;
  z-index: 10100;
  position: fixed;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
  border-radius: 4px;
  padding: 0.5rem;
}
.theme-integra .alert {
  background: #3f484d;
  border: 1px solid #31383c;
  color: #fafafa;
}
.theme-integra-dark .alert {
  background: #f7f7f7;
  border: 1px solid #d5d5d5;
  color: #5c5c5c;
}
@media (max-width: 766.98px) {
  .alert {
    width: 90%;
  }
}
.alert .icon.message {
  display: flex;
  width: 350px;
  align-items: flex-start;
}
@media (max-width: 766.98px) {
  .alert .icon.message {
    width: 100%;
  }
}
.alert .icon.message .alert-border {
  width: 4px;
  height: calc(100% - 16px);
  position: absolute;
  margin: 0 0.2rem;
}
.alert .icon.message .alert-content {
  padding-left: 1.5rem;
  display: flex;
}
.alert .icon.message .alert-content .iconStatus {
  padding: 0.7rem 0.5rem 0 0;
}
.alert .icon.message .alert-content .content {
  display: block;
  flex: 1 1 auto;
  vertical-align: middle;
  max-width: 365px;
  padding: 0.5rem;
}
@media (max-width: 766.98px) {
  .alert .icon.message .alert-content .content {
    width: 100%;
  }
}
.alert .icon.message .alert-content .content .header {
  display: block;
  margin: 0 0 1rem 0;
  font-size: 14px;
}
.alert .icon.message .alert-content .content .description {
  font-size: 12px;
  padding-bottom: 0.5rem;
  overflow-wrap: anywhere;
}
.alert .icon.message svg, .alert .icon.message i {
  font-size: 21px;
}
.alert .icon.message .close {
  opacity: 1 !important;
  position: relative;
  padding: 0 0.5rem 0 0;
  cursor: pointer !important;
  font-size: 0px;
  flex: 2;
  text-align: right;
}
.alert .icon.message .close svg {
  font-size: 12px;
}
.theme-integra .alert .icon.message .close svg {
  color: #fafafa !important;
}
.theme-integra-dark .alert .icon.message .close svg {
  color: #5c5c5c !important;
}
.alert .icon.message .close svg:hover {
  opacity: 0.5 !important;
}

.theme-integra .alert-border.alert-border-danger {
  background-color: #e37272;
}
.theme-integra-dark .alert-border.alert-border-danger {
  background-color: #e37272;
}

.theme-integra .alert-border.alert-border-success {
  background-color: #92c089;
}
.theme-integra-dark .alert-border.alert-border-success {
  background-color: #92c089;
}

.theme-integra .alert-border.alert-border-primary {
  background-color: #179ce9;
}
.theme-integra-dark .alert-border.alert-border-primary {
  background-color: #7ac8f5;
}

.alert-danger {
  border-color: transparent;
}
.theme-integra .alert-danger .icon.message svg, .theme-integra .alert-danger .icon.message i {
  color: #e37272;
}
.theme-integra-dark .alert-danger .icon.message svg, .theme-integra-dark .alert-danger .icon.message i {
  color: #e37272;
}

.alert-success {
  border-color: transparent;
}
.theme-integra .alert-success .icon.message svg, .theme-integra .alert-success .icon.message i {
  color: #92c089;
}
.theme-integra-dark .alert-success .icon.message svg, .theme-integra-dark .alert-success .icon.message i {
  color: #92c089;
}

.alert-primary {
  border-color: transparent;
}
.theme-integra .alert-primary .icon.message svg, .theme-integra .alert-primary .icon.message i {
  color: #179ce9;
}
.theme-integra-dark .alert-primary .icon.message svg, .theme-integra-dark .alert-primary .icon.message i {
  color: #7ac8f5;
}

.nexusAdvertissement {
  position: relative !important;
  padding: 1.5rem 2rem !important;
  border-radius: 0 !important;
  box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15) !important;
  border-right: none;
  border-top: none;
  border-bottom: none;
  font-size: 0.8rem;
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  z-index: 10;
  display: flex;
  top: 0;
  border-color: transparent !important;
}
.theme-integra .nexusAdvertissement {
  color: #5c5c5c;
  background: #f3f3f3;
  border-left: 4px solid #319acb !important;
}
.theme-integra-dark .nexusAdvertissement {
  color: #fafafa;
  background: #373f44;
  border-left: 4px solid #319acb !important;
}
.nexusAdvertissement svg {
  margin-top: 4px;
}
.theme-integra .nexusAdvertissement svg {
  color: #319acb;
}
.theme-integra-dark .nexusAdvertissement svg {
  color: #319acb;
}

.popover {
  font-size: 12px;
  max-width: 600px !important; /* Overwrite the bootstrap max-width of the control */
}
.theme-integra .popover {
  background-color: #444e54;
}
.theme-integra-dark .popover {
  background-color: #ffffff;
}
.occidental .popover {
  font-family: "OpenSans-Regular", sans-serif !important;
}
.arabic .popover {
  font-family: "NotoKufiArabic-Regular", sans-serif !important;
}
.theme-integra .popover.bs-popover-top .arrow::after, .theme-integra .popover.bs-popover-auto[x-placement^=top] .arrow::after, .theme-integra .popover.bs-popover-bottom .arrow::after, .theme-integra .popover.bs-popover-auto[x-placement^=bottom] .arrow::after {
  border-top-color: #444e54;
  border-bottom-color: #444e54;
}
.theme-integra-dark .popover.bs-popover-top .arrow::after, .theme-integra-dark .popover.bs-popover-auto[x-placement^=top] .arrow::after, .theme-integra-dark .popover.bs-popover-bottom .arrow::after, .theme-integra-dark .popover.bs-popover-auto[x-placement^=bottom] .arrow::after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.theme-integra .popover.bs-popover-right .arrow::after, .theme-integra .popover.bs-popover-auto[x-placement^=right] .arrow::after, .theme-integra .popover.bs-popover-left .arrow::after, .theme-integra .popover.bs-popover-auto[x-placement^=left] .arrow::after {
  border-left-color: #444e54;
  border-right-color: #444e54;
}
.theme-integra-dark .popover.bs-popover-right .arrow::after, .theme-integra-dark .popover.bs-popover-auto[x-placement^=right] .arrow::after, .theme-integra-dark .popover.bs-popover-left .arrow::after, .theme-integra-dark .popover.bs-popover-auto[x-placement^=left] .arrow::after {
  border-left-color: #ffffff;
  border-right-color: #ffffff;
}
.theme-integra .popover .popover-body {
  color: #fafafa;
}
.theme-integra-dark .popover .popover-body {
  color: #5c5c5c;
}

[data-toggle=popover] {
  cursor: pointer;
}

.button-info > svg {
  vertical-align: middle !important;
}

.bs-popover-right > .arrow, .bs-popover-auto[x-placement^=right] > .arrow {
  transform: translateX(1px);
}

.bs-popover-left > .arrow, .bs-popover-auto[x-placement^=left] > .arrow {
  transform: translateX(-1px);
}

.bs-popover-top > .arrow, .bs-popover-auto[x-placement^=top] > .arrow {
  transform: translateY(-1px);
}

.bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^=bottom] > .arrow {
  transform: translateY(1px);
}

/** Layout - Content - Toolbar - Breadcrumb- Title **/
::-webkit-scrollbar {
  width: 6px; /* Tamaño del scroll en vertical */
  height: 10px; /* Tamaño del scroll en horizontal */
}

::-webkit-scrollbar-thumb {
  border-radius: 4px;
}
.theme-integra ::-webkit-scrollbar-thumb {
  background: #b4b4b4;
}
.theme-integra-dark ::-webkit-scrollbar-thumb {
  background: #8e9498;
}

::-webkit-scrollbar-thumb:hover {
  border-radius: 4px;
}
.theme-integra ::-webkit-scrollbar-thumb:hover {
  background: #8e8e8e;
}
.theme-integra-dark ::-webkit-scrollbar-thumb:hover {
  background: #c6c6c6;
}

::-webkit-scrollbar-track {
  border-radius: 4px;
  background: transparent;
}

.theme-integra ::-webkit-scrollbar-track:hover {
  background: #f3f3f3;
}
.theme-integra-dark ::-webkit-scrollbar-track:hover {
  background: #373f44;
}

::-webkit-scrollbar-corner {
  background: transparent;
}

html {
  margin: 0px;
  padding: 0px;
  min-height: 100vh;
  width: 100%;
  box-sizing: inherit;
}

body {
  padding: 0em !important;
  width: 100%;
  font-size: 14px;
}
.occidental body {
  font-family: "OpenSans-Regular", sans-serif !important;
}
.arabic body {
  font-family: "NotoKufiArabic-Regular", sans-serif !important;
}

body.scada {
  overflow: hidden;
}

.theme-integra {
  background-color: #F4F5F6;
}

.theme-integra-dark {
  background-color: #373F44;
}

.loader {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1100;
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.54);
  justify-content: center;
  flex-direction: column;
}
.loader .spinner-border {
  color: rgba(255, 255, 255, 0.9);
  width: 3.42857143rem;
  height: 3.42857143rem;
}
.loader .sr-only {
  position: relative;
  width: auto !important;
  height: auto !important;
  text-align: center;
  font-style: normal;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 1rem;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}
.theme-integra .breadcrumb .breadcrumb-item {
  color: #8e8e8e;
}
.theme-integra-dark .breadcrumb .breadcrumb-item {
  color: #c6c6c6;
}
.theme-integra .breadcrumb .breadcrumb-item a {
  color: #8e8e8e;
}
.theme-integra-dark .breadcrumb .breadcrumb-item a {
  color: #c6c6c6;
}
.breadcrumb .breadcrumb-item.active:hover {
  cursor: pointer;
}
.theme-integra .breadcrumb .breadcrumb-item.active:hover a {
  color: !important;
}
.theme-integra-dark .breadcrumb .breadcrumb-item.active:hover a {
  color: !important;
}
.occidental .breadcrumb .breadcrumb-item:last-of-type {
  font-family: "OpenSans-Bold", sans-serif !important;
}
.arabic .breadcrumb .breadcrumb-item:last-of-type {
  font-family: "NotoKufiArabic-Bold", sans-serif !important;
}
.theme-integra .breadcrumb .breadcrumb-item:last-of-type a {
  color: !important;
}
.theme-integra-dark .breadcrumb .breadcrumb-item:last-of-type a {
  color: !important;
}

#content {
  position: relative;
  backface-visibility: hidden;
  min-height: 100%;
  transition: transform 500ms ease;
  z-index: 2;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-gutter: stable;
}
.theme-integra #content {
  background-color: #f3f3f3;
  color: #5c5c5c;
}
.theme-integra-dark #content {
  background-color: #373f44;
  color: #fafafa;
}
@media (max-width: 991.98px) {
  #content {
    position: absolute;
    top: 0;
    width: 100%;
  }
}
#content #breadCrumbSection {
  padding: 64px 1rem 0 64px;
  width: 100%;
  position: fixed;
  z-index: 11;
  font-size: 14px;
  display: flex !important;
  align-items: center;
}
.theme-integra #content #breadCrumbSection {
  background: #f3f3f3;
  border-bottom: 1px solid #bbbbbb;
}
.theme-integra-dark #content #breadCrumbSection {
  background: #373f44;
  border-bottom: 1px solid #292f32;
}
#content #breadCrumbSection #btnCrumbBack {
  background-color: transparent;
  padding-left: 1rem;
  min-width: inherit !important;
}
.theme-integra #content #breadCrumbSection #btnCrumbBack {
  color: #8e8e8e;
}
.theme-integra-dark #content #breadCrumbSection #btnCrumbBack {
  color: #c6c6c6;
}
#content #breadCrumbSection #btnCrumbBack svg {
  font-size: 14px !important;
}
@media (max-width: 1199.98px) {
  #content #breadCrumbSection {
    display: none !important;
  }
}
#content #toolbarSection {
  display: flex;
  padding: 6.2rem 0 0 0;
  width: 100%;
}
@media (max-width: 766.98px) {
  #content #toolbarSection {
    flex-direction: column;
  }
}
#content #toolbarSection #titleSection {
  margin-left: 64px;
  padding: 1rem 1rem 0 1rem;
  width: 100%;
}
@media (max-width: 991.98px) {
  #content #toolbarSection #titleSection {
    margin-left: 0 !important;
  }
}
@media (max-width: 766.98px) {
  #content #toolbarSection #titleSection {
    margin-left: 0 !important;
  }
}
@media (max-width: 766.98px) {
  #content #toolbarSection #titleSection .btnCrumbBack {
    width: auto !important;
  }
}
.theme-integra #content #toolbarSection #titleSection #ppalTitle {
  color: #5c5c5c;
}
.theme-integra-dark #content #toolbarSection #titleSection #ppalTitle {
  color: #fafafa;
}
.occidental #content #toolbarSection #titleSection #ppalTitle {
  font-family: "OpenSans-Regular", sans-serif !important;
}
.arabic #content #toolbarSection #titleSection #ppalTitle {
  font-family: "NotoKufiArabic-Regular", sans-serif !important;
}
#content #toolbarSection #optionsBar {
  padding-top: 0.5rem;
  padding-right: 1rem;
  width: 100%;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 991.98px) {
  #content #toolbarSection #optionsBar {
    padding-right: 1.35rem;
  }
}
#content #main {
  margin-left: 64px;
  width: calc(100% - 64px);
  padding: 1rem 0;
}
@media (max-width: 991.98px) {
  #content #main {
    margin-left: 0;
    width: 100%;
  }
}
@media (max-width: 766.98px) {
  #content #main {
    margin-left: 0;
    width: 100%;
  }
}
#content #main .container-fluid, #content #main .container-sm, #content #main .container-md, #content #main .container-lg, #content #main .container-xl {
  padding-left: 1rem;
  padding-right: 1rem;
}

#content.mainScada {
  position: absolute;
  top: 0;
  height: 100%;
  overflow: hidden;
}
#content.mainScada #main #myMap {
  height: 100vh;
  width: 100vw;
}
#content.mainScada #main #canvasContainer {
  height: 100%;
  position: fixed;
  top: 0;
  width: 100%;
}
@media (max-width: 991.98px) {
  #content.mainScada #main #canvasContainer {
    left: 0;
    width: 100% !important;
  }
}
#content.mainScada #main #canvasContainer #diagram-container {
  width: 100%;
  overflow: hidden;
  outline: none;
  display: block;
}
@media (max-width: 991.98px) {
  #content.mainScada #main #canvasContainer #diagram-container {
    width: 100% !important;
  }
}
@media (max-width: 766.98px) {
  #content.mainScada #main #canvasContainer #diagram-container {
    width: 100% !important;
  }
}
#content.mainScada #main #canvasContainer #diagram-container #pageback {
  stroke: #BBBBBB !important;
}
.theme-integra #content.mainScada #main #canvasContainer #diagram-container #pageback {
  fill: #ffffff;
}
.theme-integra-dark #content.mainScada #main #canvasContainer #diagram-container #pageback {
  fill: #444e54;
}

.theme-integra .mainview_svg {
  background-color: #f3f3f3;
}
.theme-integra-dark .mainview_svg {
  background-color: #373f44;
}

.tooltip-inner {
  max-width: 275px;
}

/** Nav Tabs **/
.nav-tabs {
  border: none;
  padding: 1rem 1rem 0 1rem;
}
.nav-tabs .nav-link {
  border: none;
  font-size: 1rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  margin: 0 1rem 0 0;
}
.theme-integra .nav-tabs .nav-link {
  color: #b4b4b4 !important;
}
.theme-integra-dark .nav-tabs .nav-link {
  color: #8e9498 !important;
}
.nav-tabs .nav-link::after {
  content: attr(data-text);
  content: attr(data-text)/"";
  height: 0;
  visibility: hidden;
  overflow: hidden;
  user-select: none;
  pointer-events: none;
}
.occidental .nav-tabs .nav-link::after {
  font-family: "OpenSans-Bold", sans-serif;
}
.arabic .nav-tabs .nav-link::after {
  font-family: "NotoKufiArabic-Bold", sans-serif;
}
.nav-tabs .nav-link.active {
  background-color: transparent;
  border: none;
}
.theme-integra .nav-tabs .nav-link.active {
  border-bottom: 3px solid #319acb;
  color: #5c5c5c !important;
}
.theme-integra-dark .nav-tabs .nav-link.active {
  border-bottom: 3px solid #319acb;
  color: #fafafa !important;
}

.card {
  border: none;
  padding: 0 !important;
}
.theme-integra .card {
  background: #ffffff !important;
}
.theme-integra-dark .card {
  background: #444e54 !important;
}
.card .card-header {
  padding: 12px 16px !important;
  margin-bottom: 0;
  cursor: pointer;
}
.theme-integra .card .card-header {
  color: #5c5c5c;
}
.theme-integra-dark .card .card-header {
  color: #fafafa;
}
.theme-integra .card .card-header {
  background-color: #ffffff;
  border-bottom: 1px solid #f7f7f7;
}
.theme-integra-dark .card .card-header {
  background-color: #444e54;
  border-bottom: 1px solid #3f484d;
}
.card .card-header h6 {
  font-size: 14px;
  margin-bottom: 0;
}
.occidental .card .card-header h6 {
  font-family: "OpenSans-Regular", sans-serif !important;
}
.arabic .card .card-header h6 {
  font-family: "NotoKufiArabic-Regular", sans-serif !important;
}
.theme-integra .card .card-header h6 {
  color: #5c5c5c;
}
.theme-integra-dark .card .card-header h6 {
  color: #fafafa;
}
.card .card-header svg.fa-chevron-down,
.card .card-header svg.fa-chevron-left,
.card .card-header svg.fa-chevron-right {
  cursor: pointer;
}
.theme-integra .card .card-header svg.fa-chevron-down:hover,
.theme-integra .card .card-header svg.fa-chevron-left:hover,
.theme-integra .card .card-header svg.fa-chevron-right:hover {
  color: #8e8e8e;
}
.theme-integra-dark .card .card-header svg.fa-chevron-down:hover,
.theme-integra-dark .card .card-header svg.fa-chevron-left:hover,
.theme-integra-dark .card .card-header svg.fa-chevron-right:hover {
  color: #c6c6c6;
}
.card .card-body {
  padding: 1rem;
}
.theme-integra .card .card-body {
  background: #ffffff !important;
}
.theme-integra-dark .card .card-body {
  background: #444e54 !important;
}

.accordion .card {
  overflow: inherit;
}
.accordion .card .card-header {
  margin-bottom: 0;
}

/** Forms & Buttons **/
*:focus {
  outline: none !important;
  box-shadow: none !important;
}

input:not([type]),
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=time],
input[type=text],
input[type=file],
input[type=url],
select,
textarea {
  line-height: 14px;
  font-size: 14px !important;
  padding: 0.5rem;
}
.theme-integra input:not([type]),
.theme-integra input[type=date],
.theme-integra input[type=datetime],
.theme-integra input[type=datetime-local],
.theme-integra input[type=email],
.theme-integra input[type=number],
.theme-integra input[type=password],
.theme-integra input[type=search],
.theme-integra input[type=tel],
.theme-integra input[type=time],
.theme-integra input[type=text],
.theme-integra input[type=file],
.theme-integra input[type=url],
.theme-integra select,
.theme-integra textarea {
  background-color: #f3f3f3 !important;
  border: 1px solid #d5d5d5 !important;
  color: #5c5c5c !important;
}
.theme-integra-dark input:not([type]),
.theme-integra-dark input[type=date],
.theme-integra-dark input[type=datetime],
.theme-integra-dark input[type=datetime-local],
.theme-integra-dark input[type=email],
.theme-integra-dark input[type=number],
.theme-integra-dark input[type=password],
.theme-integra-dark input[type=search],
.theme-integra-dark input[type=tel],
.theme-integra-dark input[type=time],
.theme-integra-dark input[type=text],
.theme-integra-dark input[type=file],
.theme-integra-dark input[type=url],
.theme-integra-dark select,
.theme-integra-dark textarea {
  background-color: #373f44 !important;
  border: 1px solid #31383c !important;
  color: #fafafa !important;
}
.occidental input:not([type]),
.occidental input[type=date],
.occidental input[type=datetime],
.occidental input[type=datetime-local],
.occidental input[type=email],
.occidental input[type=number],
.occidental input[type=password],
.occidental input[type=search],
.occidental input[type=tel],
.occidental input[type=time],
.occidental input[type=text],
.occidental input[type=file],
.occidental input[type=url],
.occidental select,
.occidental textarea {
  font-family: "OpenSans-Regular", sans-serif;
}
.arabic input:not([type]),
.arabic input[type=date],
.arabic input[type=datetime],
.arabic input[type=datetime-local],
.arabic input[type=email],
.arabic input[type=number],
.arabic input[type=password],
.arabic input[type=search],
.arabic input[type=tel],
.arabic input[type=time],
.arabic input[type=text],
.arabic input[type=file],
.arabic input[type=url],
.arabic select,
.arabic textarea {
  font-family: "NotoKufiArabic-Regular", sans-serif;
}
input:not([type]):hover,
input[type=date]:hover,
input[type=datetime]:hover,
input[type=datetime-local]:hover,
input[type=email]:hover,
input[type=number]:hover,
input[type=password]:hover,
input[type=search]:hover,
input[type=tel]:hover,
input[type=time]:hover,
input[type=text]:hover,
input[type=file]:hover,
input[type=url]:hover,
select:hover,
textarea:hover {
  cursor: pointer;
}
.theme-integra input:not([type]):hover,
.theme-integra input[type=date]:hover,
.theme-integra input[type=datetime]:hover,
.theme-integra input[type=datetime-local]:hover,
.theme-integra input[type=email]:hover,
.theme-integra input[type=number]:hover,
.theme-integra input[type=password]:hover,
.theme-integra input[type=search]:hover,
.theme-integra input[type=tel]:hover,
.theme-integra input[type=time]:hover,
.theme-integra input[type=text]:hover,
.theme-integra input[type=file]:hover,
.theme-integra input[type=url]:hover,
.theme-integra select:hover,
.theme-integra textarea:hover {
  border: 1px solid #bbbbbb !important;
}
.theme-integra-dark input:not([type]):hover,
.theme-integra-dark input[type=date]:hover,
.theme-integra-dark input[type=datetime]:hover,
.theme-integra-dark input[type=datetime-local]:hover,
.theme-integra-dark input[type=email]:hover,
.theme-integra-dark input[type=number]:hover,
.theme-integra-dark input[type=password]:hover,
.theme-integra-dark input[type=search]:hover,
.theme-integra-dark input[type=tel]:hover,
.theme-integra-dark input[type=time]:hover,
.theme-integra-dark input[type=text]:hover,
.theme-integra-dark input[type=file]:hover,
.theme-integra-dark input[type=url]:hover,
.theme-integra-dark select:hover,
.theme-integra-dark textarea:hover {
  border: 1px solid #292f32 !important;
}
.theme-integra input:not([type]):focus,
.theme-integra input[type=date]:focus,
.theme-integra input[type=datetime]:focus,
.theme-integra input[type=datetime-local]:focus,
.theme-integra input[type=email]:focus,
.theme-integra input[type=number]:focus,
.theme-integra input[type=password]:focus,
.theme-integra input[type=search]:focus,
.theme-integra input[type=tel]:focus,
.theme-integra input[type=time]:focus,
.theme-integra input[type=text]:focus,
.theme-integra input[type=file]:focus,
.theme-integra input[type=url]:focus,
.theme-integra select:focus,
.theme-integra textarea:focus {
  border: 1px solid #319acb !important;
}
.theme-integra-dark input:not([type]):focus,
.theme-integra-dark input[type=date]:focus,
.theme-integra-dark input[type=datetime]:focus,
.theme-integra-dark input[type=datetime-local]:focus,
.theme-integra-dark input[type=email]:focus,
.theme-integra-dark input[type=number]:focus,
.theme-integra-dark input[type=password]:focus,
.theme-integra-dark input[type=search]:focus,
.theme-integra-dark input[type=tel]:focus,
.theme-integra-dark input[type=time]:focus,
.theme-integra-dark input[type=text]:focus,
.theme-integra-dark input[type=file]:focus,
.theme-integra-dark input[type=url]:focus,
.theme-integra-dark select:focus,
.theme-integra-dark textarea:focus {
  border: 1px solid #319acb !important;
}

.theme-integra input:-webkit-autofill,
.theme-integra input:-webkit-autofill:hover,
.theme-integra input:-webkit-autofill:focus,
.theme-integra textarea:-webkit-autofill,
.theme-integra textarea:-webkit-autofill:hover,
.theme-integra textarea:-webkit-autofill:focus,
.theme-integra select:-webkit-autofill,
.theme-integra select:-webkit-autofill:hover,
.theme-integra select:-webkit-autofill:focus,
.theme-integra select {
  background-color: #f3f3f3 !important;
  border: 1px solid #d5d5d5;
  color: #5c5c5c !important;
}
.theme-integra-dark input:-webkit-autofill,
.theme-integra-dark input:-webkit-autofill:hover,
.theme-integra-dark input:-webkit-autofill:focus,
.theme-integra-dark textarea:-webkit-autofill,
.theme-integra-dark textarea:-webkit-autofill:hover,
.theme-integra-dark textarea:-webkit-autofill:focus,
.theme-integra-dark select:-webkit-autofill,
.theme-integra-dark select:-webkit-autofill:hover,
.theme-integra-dark select:-webkit-autofill:focus,
.theme-integra-dark select {
  background-color: #373f44 !important;
  border: 1px solid #31383c;
  color: #fafafa !important;
}

.input-group > .form-control:not(:first-child), .input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.input-group > .form-control:not(:last-child), .input-group > .custom-select:not(:last-child) {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.group-span-filestyle, .input-group-btn {
  height: 32px;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.theme-integra .group-span-filestyle, .theme-integra .input-group-btn {
  background-color: #f3f3f3 !important;
  border: 1px solid #d5d5d5;
  color: #5c5c5c !important;
}
.theme-integra-dark .group-span-filestyle, .theme-integra-dark .input-group-btn {
  background-color: #373f44 !important;
  border: 1px solid #31383c;
  color: #fafafa !important;
}
.group-span-filestyle label, .input-group-btn label {
  padding: 0.57rem 0.75rem;
}
.theme-integra .group-span-filestyle label, .theme-integra .input-group-btn label {
  color: #5c5c5c !important;
}
.theme-integra-dark .group-span-filestyle label, .theme-integra-dark .input-group-btn label {
  color: #fafafa !important;
}

.bootstrap-filestyle.input-group {
  flex-wrap: nowrap;
}
.bootstrap-filestyle.input-group .form-control[disabled] {
  height: 32px;
}
.theme-integra .bootstrap-filestyle.input-group .form-control[disabled] {
  background-color: #f7f7f7 !important;
}
.theme-integra-dark .bootstrap-filestyle.input-group .form-control[disabled] {
  background-color: #3f484d !important;
}
.bootstrap-filestyle.input-group .group-span-filestyle, .bootstrap-filestyle.input-group .group-span-filestyle.input-group-btn {
  border-right: none;
}
.bootstrap-filestyle.input-group .group-span-filestyle:has(+ .bootstrap-filestyle-textarea) {
  height: unset;
  display: flex;
  align-items: center;
}
.bootstrap-filestyle.input-group .bootstrap-filestyle-textarea {
  border: 1px solid;
  flex-grow: 1;
  padding: 0.38rem 0.75rem;
  border-radius: 2px !important;
  position: relative;
}
.theme-integra .bootstrap-filestyle.input-group .bootstrap-filestyle-textarea {
  background-color: #f3f3f3 !important;
  border: 1px solid #d5d5d5;
  color: #5c5c5c !important;
}
.theme-integra-dark .bootstrap-filestyle.input-group .bootstrap-filestyle-textarea {
  background-color: #373f44 !important;
  border: 1px solid #31383c;
  color: #fafafa !important;
}
.bootstrap-filestyle.input-group .bootstrap-filestyle-textarea .loader {
  top: 0;
  right: 0;
  flex-direction: row;
}
.bootstrap-filestyle.input-group .bootstrap-filestyle-textarea .loader .spinner-border {
  width: 1rem;
  height: 1rem;
}

.theme-integra .input-group.disabled .input-group-text {
  background-color: #f7f7f7 !important;
  color: #8e8e8e !important;
}
.theme-integra-dark .input-group.disabled .input-group-text {
  background-color: #3f484d !important;
  color: #c6c6c6 !important;
}

.input-group-append,
.input-group-prepend {
  height: 32px;
}
.theme-integra .input-group-append,
.theme-integra .input-group-prepend {
  background-color: #f3f3f3 !important;
  color: #5c5c5c !important;
}
.theme-integra-dark .input-group-append,
.theme-integra-dark .input-group-prepend {
  background-color: #373f44 !important;
  color: #fafafa !important;
}

.tovcs .input-group-append {
  border: none !important;
}

.input-group-append {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.input-group-prepend {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.input-group-append > .btn-icon,
.input-group-prepend > .btn-icon {
  font-size: 0.75rem !important;
  padding: 0.57rem 0.75rem;
}

.input-group-text {
  padding: 0.57rem 0.75rem;
  height: 32px;
}

input[type=range] {
  -webkit-appearance: none;
  overflow: hidden;
}
input[type=range]::-webkit-slider-runnable-track {
  height: 10px;
  cursor: pointer;
  box-shadow: 0px 0px 0px #000000;
  border: 1px solid;
}
.theme-integra input[type=range]::-webkit-slider-runnable-track {
  background: #f3f3f3;
  border-color: #d5d5d5;
}
.theme-integra-dark input[type=range]::-webkit-slider-runnable-track {
  background: #373f44;
  border-color: #31383c;
}
input[type=range]::-webkit-slider-thumb {
  box-shadow: 1px 1px 1px #828282;
  border: 1px solid;
  height: 10px;
  width: 20px;
  border-radius: 6px;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -1px;
}
.theme-integra input[type=range]::-webkit-slider-thumb {
  box-shadow: -600px 0 0 590px #319acb;
  border-color: #5c5c5c;
  background: #ffffff;
}
.theme-integra-dark input[type=range]::-webkit-slider-thumb {
  box-shadow: -600px 0 0 590px #319acb;
  border-color: #fafafa;
  background: #444e54;
}
.theme-integra input[type=range]:hover::-webkit-slider-thumb {
  box-shadow: -600px 0 0 590px #387c9b;
}
.theme-integra-dark input[type=range]:hover::-webkit-slider-thumb {
  box-shadow: -600px 0 0 590px #387c9b;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

*::placeholder {
  font-style: normal !important;
  font-size: 14px;
}
.theme-integra *::placeholder {
  color: #8e8e8e !important;
}
.theme-integra-dark *::placeholder {
  color: #c6c6c6 !important;
}

label {
  font-size: 14px;
}
.theme-integra label {
  color: #5c5c5c;
}
.theme-integra-dark label {
  color: #fafafa;
}
.occidental label {
  font-family: "OpenSans-Regular", sans-serif;
}
.arabic label {
  font-family: "NotoKufiArabic-Regular", sans-serif;
}

.btn {
  cursor: pointer;
  height: 32px;
}
.occidental .btn {
  font-family: "OpenSans-Regular", sans-serif;
}
.arabic .btn {
  font-family: "NotoKufiArabic-Regular", sans-serif;
}
@media (max-width: 766.98px) {
  .btn {
    width: 100%;
  }
}

.btn-icon {
  padding: 0;
  width: 32px;
  margin: 0em 0.5em 0em 0em;
}

.btn-file {
  margin: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  font-size: 0.85rem !important;
  height: 35px;
}

.theme-integra .btn-primary,
.theme-integra .btn-primary.active {
  color: #fafafa !important;
  background-color: #319acb !important;
}
.theme-integra-dark .btn-primary,
.theme-integra-dark .btn-primary.active {
  color: #fafafa !important;
  background-color: #319acb !important;
}

.theme-integra .btn-primary:hover {
  background-color: #387c9b !important;
}
.theme-integra-dark .btn-primary:hover {
  background-color: #387c9b !important;
}

.theme-integra .btn-primary:focus {
  box-shadow: 0px 0px 1px 2px #319ACB !important;
}
.theme-integra-dark .btn-primary:focus {
  box-shadow: 0px 0px 1px 2px #319ACB !important;
}

.btn-primary.disabled,
.btn-primary:disabled {
  opacity: 1;
  pointer-events: none;
}
.theme-integra .btn-primary.disabled,
.theme-integra .btn-primary:disabled {
  color: rgba(250, 250, 250, 0.8) !important;
  background-color: #97cce4 !important;
}
.theme-integra-dark .btn-primary.disabled,
.theme-integra-dark .btn-primary:disabled {
  color: #8e9498 !important;
  background-color: #25576e !important;
}
.theme-integra .btn-primary.disabled:hover,
.theme-integra .btn-primary:disabled:hover {
  color: rgba(250, 250, 250, 0.8) !important;
  background-color: #97cce4 !important;
}
.theme-integra-dark .btn-primary.disabled:hover,
.theme-integra-dark .btn-primary:disabled:hover {
  color: #8e9498 !important;
  background-color: #25576e !important;
}
.btn-primary.disabled:focus, .btn-primary.disabled.active,
.btn-primary:disabled:focus,
.btn-primary:disabled.active {
  box-shadow: none !important;
}

.btn-primary.dropdown-toggle:focus,
.btn-primary.dropdown-toggle.active {
  box-shadow: none !important;
}

.theme-integra .btn-danger,
.theme-integra .btn-danger.active {
  color: #fafafa !important;
  background-color: #e37272 !important;
}
.theme-integra-dark .btn-danger,
.theme-integra-dark .btn-danger.active {
  color: #fafafa !important;
  background-color: #e37272 !important;
}

.theme-integra .btn-danger:hover {
  background-color: #b54646 !important;
}
.theme-integra-dark .btn-danger:hover {
  background-color: #b54646 !important;
}

.theme-integra .btn-danger:focus {
  box-shadow: 0px 0px 1px 2px #319ACB !important;
}
.theme-integra-dark .btn-danger:focus {
  box-shadow: 0px 0px 1px 2px #319ACB !important;
}

.btn-danger.disabled,
.btn-danger:disabled {
  pointer-events: none;
}
.theme-integra .btn-danger.disabled,
.theme-integra .btn-danger:disabled {
  color: #8E9498 !important;
  background-color: #823232 !important;
}
.theme-integra-dark .btn-danger.disabled,
.theme-integra-dark .btn-danger:disabled {
  color: #8E9498 !important;
  background-color: #823232 !important;
}
.theme-integra .btn-danger.disabled:hover,
.theme-integra .btn-danger:disabled:hover {
  color: #8E9498 !important;
  background-color: #823232 !important;
}
.theme-integra-dark .btn-danger.disabled:hover,
.theme-integra-dark .btn-danger:disabled:hover {
  color: #8E9498 !important;
  background-color: #823232 !important;
}
.btn-danger.disabled:focus, .btn-danger.disabled.active,
.btn-danger:disabled:focus,
.btn-danger:disabled.active {
  box-shadow: none !important;
}

.btn-outline,
.btn-outline.active {
  border-width: 1px;
  border-style: solid;
  min-width: inherit;
  background-color: transparent !important;
}
.theme-integra .btn-outline,
.theme-integra .btn-outline.active {
  border-color: #5c5c5c !important;
  color: #5c5c5c !important;
}
.theme-integra-dark .btn-outline,
.theme-integra-dark .btn-outline.active {
  border-color: #fafafa !important;
  color: #fafafa !important;
}
.theme-integra .btn-outline:hover,
.theme-integra .btn-outline.active:hover {
  border-color: #5c5c5c !important;
  background: rgba(92, 92, 92, 0.1) !important;
}
.theme-integra-dark .btn-outline:hover,
.theme-integra-dark .btn-outline.active:hover {
  border-color: #fafafa !important;
  background: rgba(250, 250, 250, 0.08) !important;
}
.theme-integra .btn-outline:focus,
.theme-integra .btn-outline.active:focus {
  box-shadow: 0px 0px 1px 2px #319ACB !important;
}
.theme-integra-dark .btn-outline:focus,
.theme-integra-dark .btn-outline.active:focus {
  box-shadow: 0px 0px 1px 2px #319ACB !important;
}
.btn-outline.disabled,
.btn-outline.active.disabled {
  opacity: 1;
  pointer-events: none;
}
.theme-integra .btn-outline.disabled,
.theme-integra .btn-outline.active.disabled {
  border-color: #b4b4b4 !important;
  color: #b4b4b4 !important;
}
.theme-integra-dark .btn-outline.disabled,
.theme-integra-dark .btn-outline.active.disabled {
  border-color: #8e9498 !important;
  color: #8e9498 !important;
}
.theme-integra .btn-outline.disabled:hover, .theme-integra .btn-outline.disabled.active,
.theme-integra .btn-outline.active.disabled:hover,
.theme-integra .btn-outline.active.disabled.active {
  border-color: #b4b4b4 !important;
  color: #b4b4b4 !important;
}
.theme-integra-dark .btn-outline.disabled:hover, .theme-integra-dark .btn-outline.disabled.active,
.theme-integra-dark .btn-outline.active.disabled:hover,
.theme-integra-dark .btn-outline.active.disabled.active {
  border-color: #8e9498 !important;
  color: #8e9498 !important;
}
.btn-outline.disabled.active,
.btn-outline.active.disabled.active {
  box-shadow: none !important;
}

.btn-outline.dropdown-toggle,
.show > .btn-outline.dropdown-toggle {
  background-color: transparent !important;
}

.theme-integra .btn-outline.btn-outline-solid {
  background: #f3f3f3 !important;
}
.theme-integra-dark .btn-outline.btn-outline-solid {
  background: #373f44 !important;
}
.theme-integra .btn-outline.btn-outline-solid:hover, .theme-integra .btn-outline.btn-outline-solid.active {
  background: #ffffff !important;
}
.theme-integra-dark .btn-outline.btn-outline-solid:hover, .theme-integra-dark .btn-outline.btn-outline-solid.active {
  background: #444e54 !important;
}
.btn-outline.btn-outline-solid svg {
  position: relative;
}

.btn-link {
  font-size: 14px !important;
}
.theme-integra .btn-link {
  color: #5c5c5c !important;
}
.theme-integra-dark .btn-link {
  color: #fafafa !important;
}
.theme-integra .btn-link:hover, .theme-integra .btn-link.active {
  color: #8e8e8e !important;
}
.theme-integra-dark .btn-link:hover, .theme-integra-dark .btn-link.active {
  color: #c6c6c6 !important;
}

.itemLink {
  font-size: 0.8rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}
.theme-integra .itemLink:hover {
  color: #8e8e8e;
}
.theme-integra-dark .itemLink:hover {
  color: #c6c6c6;
}

.input-group-text svg {
  position: relative !important;
}

#toolbarButtonList .dropdown-item a,
#toolbarButtonList .dropdown-menu .dropdown-item a,
.toolbarButtonList .dropdown-item a,
.toolbarButtonList.dropdown-menu .dropdown-item a {
  padding: 0;
  font-size: 0.75rem;
}
.theme-integra #toolbarButtonList .dropdown-item a,
.theme-integra #toolbarButtonList .dropdown-menu .dropdown-item a,
.theme-integra .toolbarButtonList .dropdown-item a,
.theme-integra .toolbarButtonList.dropdown-menu .dropdown-item a {
  color: #5c5c5c;
}
.theme-integra-dark #toolbarButtonList .dropdown-item a,
.theme-integra-dark #toolbarButtonList .dropdown-menu .dropdown-item a,
.theme-integra-dark .toolbarButtonList .dropdown-item a,
.theme-integra-dark .toolbarButtonList.dropdown-menu .dropdown-item a {
  color: #fafafa;
}
#toolbarButtonList .dropdown-item a:hover,
#toolbarButtonList .dropdown-menu .dropdown-item a:hover,
.toolbarButtonList .dropdown-item a:hover,
.toolbarButtonList.dropdown-menu .dropdown-item a:hover {
  text-decoration: none;
}
.theme-integra #toolbarButtonList .dropdown-item:hover a,
.theme-integra #toolbarButtonList .dropdown-menu .dropdown-item:hover a,
.theme-integra .toolbarButtonList .dropdown-item:hover a,
.theme-integra .toolbarButtonList.dropdown-menu .dropdown-item:hover a {
  color: #8e8e8e;
}
.theme-integra-dark #toolbarButtonList .dropdown-item:hover a,
.theme-integra-dark #toolbarButtonList .dropdown-menu .dropdown-item:hover a,
.theme-integra-dark .toolbarButtonList .dropdown-item:hover a,
.theme-integra-dark .toolbarButtonList.dropdown-menu .dropdown-item:hover a {
  color: #c6c6c6;
}

.dropdown-item {
  cursor: pointer;
}

.dropdown-item:active {
  background-color: transparent;
}
.dropdown-item:active a {
  color: #319ACB;
  text-decoration: none;
  background-color: transparent;
}

.dropdown-hover > .dropdown-menu {
  left: auto;
  right: 20%;
  min-width: inherit;
}

.dropdown-hover:hover > .dropdown-menu {
  display: block;
  top: 100%;
}

.dropdown-hover > .dropdown-toggle:active {
  pointer-events: none;
}

.dropdown-hover > .dropdown-menu > .dropdown-item.active,
.dropdown-hover > .dropdown-menu > .dropdown-item:active {
  text-decoration: none;
}
.theme-integra .dropdown-hover > .dropdown-menu > .dropdown-item.active,
.theme-integra .dropdown-hover > .dropdown-menu > .dropdown-item:active {
  background-color: transparent;
  color: #8e8e8e;
}
.theme-integra-dark .dropdown-hover > .dropdown-menu > .dropdown-item.active,
.theme-integra-dark .dropdown-hover > .dropdown-menu > .dropdown-item:active {
  background-color: transparent;
  color: #c6c6c6;
}

.dropleft .dropdown-submenu .dropdown-menu.show {
  right: 100% !important;
  left: auto !important;
}

.theme-integra .bg-btn-primary .dropdown-menu.show {
  background-color: #319acb;
  border: 1px solid #319acb;
}
.theme-integra-dark .bg-btn-primary .dropdown-menu.show {
  background-color: #319acb;
  border: 1px solid #319acb;
}
.theme-integra .bg-btn-primary .dropdown-menu.show .dropdown-item a {
  color: #fafafa !important;
}
.theme-integra-dark .bg-btn-primary .dropdown-menu.show .dropdown-item a {
  color: #fafafa !important;
}
.theme-integra .bg-btn-primary .dropdown-menu.show .dropdown-item:hover,
.theme-integra .bg-btn-primary .dropdown-menu.show .dropdown-item:focus {
  background-color: #387c9b;
}
.theme-integra-dark .bg-btn-primary .dropdown-menu.show .dropdown-item:hover,
.theme-integra-dark .bg-btn-primary .dropdown-menu.show .dropdown-item:focus {
  background-color: #387c9b;
}

.theme-integra .bg-btn-secondary .dropdown-menu.show {
  border: 1px solid;
}
.theme-integra-dark .bg-btn-secondary .dropdown-menu.show {
  border: 1px solid;
}
.theme-integra .bg-btn-outline .dropdown-menu.show {
  border: 1px solid #5c5c5c;
  background: #f3f3f3;
}
.theme-integra-dark .bg-btn-outline .dropdown-menu.show {
  border: 1px solid #fafafa;
  background: #373f44;
}
.theme-integra .bg-btn-outline .dropdown-menu.show .dropdown-item a {
  color: #5c5c5c !important;
}
.theme-integra-dark .bg-btn-outline .dropdown-menu.show .dropdown-item a {
  color: #fafafa !important;
}
.theme-integra .bg-btn-outline .dropdown-menu.show .dropdown-item:hover,
.theme-integra .bg-btn-outline .dropdown-menu.show .dropdown-item:focus {
  background-color: rgba(92, 92, 92, 0.1);
}
.theme-integra-dark .bg-btn-outline .dropdown-menu.show .dropdown-item:hover,
.theme-integra-dark .bg-btn-outline .dropdown-menu.show .dropdown-item:focus {
  background-color: rgba(250, 250, 250, 0.08);
}

.dropdown .dropdown-menu[x-placement^=right] {
  right: auto;
  left: 100%;
}

.dropdown .dropdown-menu[x-placement^=left] {
  right: 100%;
  left: auto;
}

.dropdown .dropdown-menu[x-placement$=start] {
  top: 0;
}

.dropdown .dropdown-menu[x-placement$=end] {
  right: 100%;
}

.dropdown-item.dropdown-submenu:has(> .dropdown-menu[x-placement^=right]):after {
  display: inline-block;
  font-family: "ej-webfont", sans-serif;
  content: "\e674";
  position: absolute;
  right: 0;
  top: 7px !important;
  margin-right: 6px;
  font-size: 10px;
}

.dropdown-item.dropdown-submenu:has(> .dropdown-menu[x-placement^=left]):before {
  display: inline-block;
  font-family: "ej-webfont", sans-serif;
  content: "\e671";
  position: absolute;
  left: 0;
  top: 7px !important;
  margin-left: 6px;
  font-size: 10px;
}

.bg-btn-primary .dropdown-item.dropdown-submenu:has(> .dropdown-menu):after, .bg-btn-primary .dropdown-item.dropdown-submenu:has(> .dropdown-menu):before {
  color: #fff;
}

.dropdown .dropdown-menu[x-placement^=right] {
  right: auto;
  left: 100%;
}

.dropdown .dropdown-menu[x-placement^=left] {
  right: 100%;
  left: auto;
}

.dropdown .dropdown-menu[x-placement$=start] {
  top: 0;
}

.dropdown .dropdown-menu[x-placement$=end] {
  right: 100%;
}

.dropdown-item.dropdown-submenu:has(> .dropdown-menu[x-placement^=right]):after {
  display: inline-block;
  font-family: "ej-webfont", sans-serif;
  content: "\e674";
  position: absolute;
  right: 0;
  top: 9px;
  margin-right: 6px;
  font-size: 10px;
}

.dropdown-item.dropdown-submenu:has(> .dropdown-menu[x-placement^=left]):before {
  display: inline-block;
  font-family: "ej-webfont", sans-serif;
  content: "\e671";
  position: absolute;
  left: 0;
  top: 9px;
  margin-left: 6px;
  font-size: 10px;
}

.bg-btn-primary .dropdown-item.dropdown-submenu:has(> .dropdown-menu):after, .bg-btn-primary .dropdown-item.dropdown-submenu:has(> .dropdown-menu):before {
  color: #fff;
}

/** TagViews Forms **/
.column-special {
  width: 50%;
  transition: all 0.3s ease 0.1s;
}
.column-special .accordion-lateral {
  height: 100%;
}
@media (max-width: 991.98px) {
  .column-special {
    width: 100%;
  }
}
@media (max-width: 766.98px) {
  .column-special {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

.column-special.left {
  padding-right: 1rem;
}
@media (max-width: 991.98px) {
  .column-special.left {
    margin-bottom: 3rem;
    padding-right: 0;
  }
}
@media (max-width: 766.98px) {
  .column-special.left {
    margin-bottom: 1rem;
    padding-right: 0;
  }
}
.column-special.left .card-header h6 {
  height: inherit;
  width: inherit;
  opacity: 1;
  transition: all 0.3s ease 0.5s;
}
.column-special.left .card-body#toggle-accordion-lateral {
  height: inherit;
  width: inherit;
  opacity: 1;
  transition: opacity 0.3s ease 0.5s;
}
@media (max-width: 991.98px) {
  .column-special.left .card-body#toggle-accordion-lateral {
    visibility: visible;
    transition: all 0.3s ease 0.1s;
    display: block;
  }
}
@media (max-width: 766.98px) {
  .column-special.left .card-body#toggle-accordion-lateral {
    visibility: visible;
    transition: all 0.3s ease 0.1s;
    display: block;
  }
}

.column-special.right {
  padding-left: 1rem;
}
@media (max-width: 991.98px) {
  .column-special.right {
    padding-left: 0;
  }
}

#assetsAssociationForm .column-special.left {
  width: 20%;
}

#assetsAssociationForm .column-special.right {
  width: 80%;
}

.column-special.width-accordion-lateral.right,
#assetsAssociationForm .column-special.width-accordion-lateral.right,
.column-special.width-accordion-lateral.left,
#assetsAssociationForm .column-special.width-accordion-lateral.left {
  width: 93.5%;
  transition: all 0.3s ease 0.1s;
}
.column-special.width-accordion-lateral.right .accordion-lateral,
#assetsAssociationForm .column-special.width-accordion-lateral.right .accordion-lateral,
.column-special.width-accordion-lateral.left .accordion-lateral,
#assetsAssociationForm .column-special.width-accordion-lateral.left .accordion-lateral {
  height: 100%;
}
.column-special.width-accordion-lateral.right .accordion-lateral .card,
#assetsAssociationForm .column-special.width-accordion-lateral.right .accordion-lateral .card,
.column-special.width-accordion-lateral.left .accordion-lateral .card,
#assetsAssociationForm .column-special.width-accordion-lateral.left .accordion-lateral .card {
  height: 100%;
}
.column-special.width-accordion-lateral.right .accordion-lateral .card .card-header h6,
#assetsAssociationForm .column-special.width-accordion-lateral.right .accordion-lateral .card .card-header h6,
.column-special.width-accordion-lateral.left .accordion-lateral .card .card-header h6,
#assetsAssociationForm .column-special.width-accordion-lateral.left .accordion-lateral .card .card-header h6 {
  height: inherit;
  width: inherit;
  opacity: 1;
  transition: all 0.3s ease 0;
}
.column-special.width-accordion-lateral.right .accordion-lateral .card .card-header svg,
#assetsAssociationForm .column-special.width-accordion-lateral.right .accordion-lateral .card .card-header svg,
.column-special.width-accordion-lateral.left .accordion-lateral .card .card-header svg,
#assetsAssociationForm .column-special.width-accordion-lateral.left .accordion-lateral .card .card-header svg {
  transform: rotate(180deg);
}
@media (max-width: 991.98px) {
  .column-special.width-accordion-lateral.right .accordion-lateral .card .card-header svg,
  #assetsAssociationForm .column-special.width-accordion-lateral.right .accordion-lateral .card .card-header svg,
  .column-special.width-accordion-lateral.left .accordion-lateral .card .card-header svg,
  #assetsAssociationForm .column-special.width-accordion-lateral.left .accordion-lateral .card .card-header svg {
    transform: rotate(-90deg);
  }
}
@media (max-width: 766.98px) {
  .column-special.width-accordion-lateral.right .accordion-lateral .card .card-header svg,
  #assetsAssociationForm .column-special.width-accordion-lateral.right .accordion-lateral .card .card-header svg,
  .column-special.width-accordion-lateral.left .accordion-lateral .card .card-header svg,
  #assetsAssociationForm .column-special.width-accordion-lateral.left .accordion-lateral .card .card-header svg {
    transform: rotate(-90deg);
  }
}
.column-special.width-accordion-lateral.right .accordion-lateral .card .card-body#toggle-accordion-lateral.in,
#assetsAssociationForm .column-special.width-accordion-lateral.right .accordion-lateral .card .card-body#toggle-accordion-lateral.in,
.column-special.width-accordion-lateral.left .accordion-lateral .card .card-body#toggle-accordion-lateral.in,
#assetsAssociationForm .column-special.width-accordion-lateral.left .accordion-lateral .card .card-body#toggle-accordion-lateral.in {
  height: inherit;
  width: 0;
  opacity: 0;
  transition: none;
}
@media (max-width: 991.98px) {
  .column-special.width-accordion-lateral.right .accordion-lateral .card .card-body#toggle-accordion-lateral.in,
  #assetsAssociationForm .column-special.width-accordion-lateral.right .accordion-lateral .card .card-body#toggle-accordion-lateral.in,
  .column-special.width-accordion-lateral.left .accordion-lateral .card .card-body#toggle-accordion-lateral.in,
  #assetsAssociationForm .column-special.width-accordion-lateral.left .accordion-lateral .card .card-body#toggle-accordion-lateral.in {
    width: inherit;
    opacity: 1;
    visibility: hidden;
    transition: all 0.3s ease 0.1s;
    display: none;
  }
}
@media (max-width: 766.98px) {
  .column-special.width-accordion-lateral.right .accordion-lateral .card .card-body#toggle-accordion-lateral.in,
  #assetsAssociationForm .column-special.width-accordion-lateral.right .accordion-lateral .card .card-body#toggle-accordion-lateral.in,
  .column-special.width-accordion-lateral.left .accordion-lateral .card .card-body#toggle-accordion-lateral.in,
  #assetsAssociationForm .column-special.width-accordion-lateral.left .accordion-lateral .card .card-body#toggle-accordion-lateral.in {
    width: inherit;
    opacity: 1;
    visibility: hidden;
    transition: all 0.3s ease 0.1s;
    display: none;
  }
}
@media (max-width: 991.98px) {
  .column-special.width-accordion-lateral.right,
  #assetsAssociationForm .column-special.width-accordion-lateral.right,
  .column-special.width-accordion-lateral.left,
  #assetsAssociationForm .column-special.width-accordion-lateral.left {
    width: 100%;
  }
}
@media (max-width: 766.98px) {
  .column-special.width-accordion-lateral.right,
  #assetsAssociationForm .column-special.width-accordion-lateral.right,
  .column-special.width-accordion-lateral.left,
  #assetsAssociationForm .column-special.width-accordion-lateral.left {
    width: 100%;
    padding-right: 0;
  }
}

.column-special.width-accordion-lateral.right.closed,
#assetsAssociationForm .column-special.width-accordion-lateral.right.closed,
.column-special.width-accordion-lateral.left.closed,
#assetsAssociationForm .column-special.width-accordion-lateral.left.closed {
  width: 6.5%;
  transition: all 0.3s ease 0.1s;
}
@media (max-width: 991.98px) {
  .column-special.width-accordion-lateral.right.closed,
  #assetsAssociationForm .column-special.width-accordion-lateral.right.closed,
  .column-special.width-accordion-lateral.left.closed,
  #assetsAssociationForm .column-special.width-accordion-lateral.left.closed {
    width: 100%;
  }
}
@media (max-width: 766.98px) {
  .column-special.width-accordion-lateral.right.closed,
  #assetsAssociationForm .column-special.width-accordion-lateral.right.closed,
  .column-special.width-accordion-lateral.left.closed,
  #assetsAssociationForm .column-special.width-accordion-lateral.left.closed {
    width: 100%;
    padding-left: 0;
  }
}
.column-special.width-accordion-lateral.right.closed .accordion-lateral .card .card-header,
#assetsAssociationForm .column-special.width-accordion-lateral.right.closed .accordion-lateral .card .card-header,
.column-special.width-accordion-lateral.left.closed .accordion-lateral .card .card-header,
#assetsAssociationForm .column-special.width-accordion-lateral.left.closed .accordion-lateral .card .card-header {
  justify-content: center !important;
}
@media (max-width: 991.98px) {
  .column-special.width-accordion-lateral.right.closed .accordion-lateral .card .card-header,
  #assetsAssociationForm .column-special.width-accordion-lateral.right.closed .accordion-lateral .card .card-header,
  .column-special.width-accordion-lateral.left.closed .accordion-lateral .card .card-header,
  #assetsAssociationForm .column-special.width-accordion-lateral.left.closed .accordion-lateral .card .card-header {
    justify-content: space-between !important;
  }
}
.column-special.width-accordion-lateral.right.closed .accordion-lateral .card .card-header h6,
#assetsAssociationForm .column-special.width-accordion-lateral.right.closed .accordion-lateral .card .card-header h6,
.column-special.width-accordion-lateral.left.closed .accordion-lateral .card .card-header h6,
#assetsAssociationForm .column-special.width-accordion-lateral.left.closed .accordion-lateral .card .card-header h6 {
  height: 0;
  width: 0;
  opacity: 0;
  transition: none;
}
@media (max-width: 991.98px) {
  .column-special.width-accordion-lateral.right.closed .accordion-lateral .card .card-header h6,
  #assetsAssociationForm .column-special.width-accordion-lateral.right.closed .accordion-lateral .card .card-header h6,
  .column-special.width-accordion-lateral.left.closed .accordion-lateral .card .card-header h6,
  #assetsAssociationForm .column-special.width-accordion-lateral.left.closed .accordion-lateral .card .card-header h6 {
    height: inherit;
    width: inherit;
    opacity: 1;
  }
}
@media (max-width: 766.98px) {
  .column-special.width-accordion-lateral.right.closed .accordion-lateral .card .card-header h6,
  #assetsAssociationForm .column-special.width-accordion-lateral.right.closed .accordion-lateral .card .card-header h6,
  .column-special.width-accordion-lateral.left.closed .accordion-lateral .card .card-header h6,
  #assetsAssociationForm .column-special.width-accordion-lateral.left.closed .accordion-lateral .card .card-header h6 {
    height: inherit;
    width: inherit;
    opacity: 1;
  }
}

#containerFormula > .awesomplete {
  border: 1px solid rgba(34, 36, 38, 0.15);
}

/** Wizard Forms **/
.steps {
  padding-left: 0;
  display: flex;
  justify-content: center;
}
@media (max-width: 991.98px) {
  .steps {
    flex-direction: column;
  }
}
.steps .step {
  list-style-type: none;
  position: relative;
  align-items: center;
  justify-content: start;
  margin-right: 10px;
  padding: 1.14285714em 2em;
  transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, box-shadow 0.1s ease;
  display: flex;
  flex: 1;
  border-radius: 4px;
}
.theme-integra .steps .step {
  background: #d5d5d5 !important;
  color: #5c5c5c;
  border: 1px solid #d5d5d5;
}
.theme-integra-dark .steps .step {
  background: #31383c !important;
  color: #fafafa;
  border: 1px solid #31383c;
}
@media (max-width: 991.98px) {
  .steps .step {
    border-radius: 0.28571429rem;
  }
}
.steps .step h3 {
  font-size: 16px;
}
.steps .step.active {
  box-shadow: none;
  border: none;
}
.theme-integra .steps .step.active {
  background: #319acb !important;
  color: #fafafa;
  border: none;
}
.theme-integra-dark .steps .step.active {
  background: #319acb !important;
  color: #fafafa;
  border: none;
}
.steps .step div:first-of-type {
  visibility: hidden;
}
.steps .step.completed div:first-of-type {
  visibility: visible;
  margin-right: 2rem;
}
.steps .step:last-of-type {
  margin-right: 0;
}

/** Query execution **/
#noParametersMessage .alert {
  position: relative !important;
  max-width: inherit !important;
  margin: 0;
}

/** Telemetry Form **/
.serverCard {
  box-shadow: 0px 2px 4px 0 rgba(0, 0, 0, 0.2) !important;
}

.detailsCard {
  cursor: pointer;
}
.detailsCard .card-footer {
  border-top: none;
  background-color: transparent !important;
}
.detailsCard .card-footer .list-group .list-group-item {
  background: transparent !important;
}

.iconSection {
  flex: 1;
}

.progressSection {
  flex: 8;
}

.detailsCard-Alive {
  background-color: rgba(76, 137, 62, 0.35) !important;
  border: 1px solid rgba(76, 137, 62, 0.35);
}

.detailsCard-NotAlive {
  background-color: rgba(156, 55, 55, 0.35) !important;
  border: 1px solid rgba(156, 55, 55, 0.35);
}

.detailsCard-Zombie {
  background-color: rgba(197, 191, 27, 0.35) !important;
  border: 1px solid rgba(197, 191, 27, 0.35);
}

#cardContainer > div:hover {
  transform: translateY(-3px);
}
.theme-integra #cardContainer > div:hover {
  color: #8e8e8e !important;
}
.theme-integra-dark #cardContainer > div:hover {
  color: #c6c6c6 !important;
}

.awesomplete {
  display: block;
  width: 100%;
}

.validationFormula {
  border-radius: 0.25rem;
}
.theme-integra .validationFormula {
  background-color: #f3f3f3 !important;
  border: 1px solid #d5d5d5;
}
.theme-integra-dark .validationFormula {
  background-color: #373f44 !important;
  border: 1px solid #31383c;
}

@media (max-width: 991.98px) {
  .dropdown-mobile {
    flex-basis: auto;
    text-align: left !important;
    margin-bottom: 1rem;
  }
}

#assetTypesList .list-group-item {
  border-radius: 0.28571429rem;
  border: 1px solid grey;
  padding: 1rem 0.5rem;
  margin-bottom: 0.5rem;
  background-color: transparent;
}
#assetTypesList .list-group-item:hover, #assetTypesList .list-group-item.active {
  background-color: grey;
  color: white;
}

.colorPickerControl > div {
  padding: 0.61em 1em;
  cursor: pointer;
  line-height: 1rem;
  font-size: 14px;
  border-radius: 2px;
}

.iti {
  display: block;
}

.btn-bootstrap-select {
  line-height: 1.5;
  text-transform: none;
  font-size: unset !important;
  padding: 0.4em 1em;
}
.theme-integra .btn-bootstrap-select {
  background-color: #f3f3f3;
  color: #5c5c5c;
}
.theme-integra-dark .btn-bootstrap-select {
  background-color: #373f44;
  color: #fafafa;
}
.occidental .btn-bootstrap-select {
  font-family: "OpenSans-Regular", sans-serif;
}
.arabic .btn-bootstrap-select {
  font-family: "NotoKufiArabic-Regular", sans-serif;
}

.theme-integra .ej-d-node .dropdown-menu, .theme-integra #advancedChartControl .dropdown-menu,
.theme-integra .bootstrap-select .dropdown-menu {
  background-color: #f3f3f3;
  color: #5c5c5c;
  box-shadow: rgb(136, 136, 136) 3px 3px 10px;
  border: 1px solid #d5d5d5;
}
.theme-integra-dark .ej-d-node .dropdown-menu, .theme-integra-dark #advancedChartControl .dropdown-menu,
.theme-integra-dark .bootstrap-select .dropdown-menu {
  background-color: #373f44;
  color: #fafafa;
  box-shadow: rgb(136, 136, 136) 3px 3px 10px;
  border: 1px solid #31383c;
}
.ej-d-node .dropdown-menu .card, #advancedChartControl .dropdown-menu .card,
.bootstrap-select .dropdown-menu .card {
  border-radius: 0.25rem;
}
.ej-d-node .dropdown-menu .card .card-header, #advancedChartControl .dropdown-menu .card .card-header,
.bootstrap-select .dropdown-menu .card .card-header {
  border-radius: 0.25rem 0.25rem 0 0;
}
.ej-d-node .dropdown-menu .card .card-body, #advancedChartControl .dropdown-menu .card .card-body,
.bootstrap-select .dropdown-menu .card .card-body {
  border-radius: 0 0 0.25rem 0.25rem;
}
.theme-integra .ej-d-node .dropdown-menu .dropdown-item, .theme-integra .ej-d-node .dropdown-menu .no-results, .theme-integra #advancedChartControl .dropdown-menu .dropdown-item, .theme-integra #advancedChartControl .dropdown-menu .no-results,
.theme-integra .bootstrap-select .dropdown-menu .dropdown-item,
.theme-integra .bootstrap-select .dropdown-menu .no-results {
  background-color: #f3f3f3;
  color: #5c5c5c;
}
.theme-integra-dark .ej-d-node .dropdown-menu .dropdown-item, .theme-integra-dark .ej-d-node .dropdown-menu .no-results, .theme-integra-dark #advancedChartControl .dropdown-menu .dropdown-item, .theme-integra-dark #advancedChartControl .dropdown-menu .no-results,
.theme-integra-dark .bootstrap-select .dropdown-menu .dropdown-item,
.theme-integra-dark .bootstrap-select .dropdown-menu .no-results {
  background-color: #373f44;
  color: #fafafa;
}
.theme-integra .ej-d-node .dropdown-menu .dropdown-item:not(.no-results):hover, .theme-integra .ej-d-node .dropdown-menu .no-results:not(.no-results):hover, .theme-integra #advancedChartControl .dropdown-menu .dropdown-item:not(.no-results):hover, .theme-integra #advancedChartControl .dropdown-menu .no-results:not(.no-results):hover,
.theme-integra .bootstrap-select .dropdown-menu .dropdown-item:not(.no-results):hover,
.theme-integra .bootstrap-select .dropdown-menu .no-results:not(.no-results):hover {
  background-color: #d5d5d5;
}
.theme-integra-dark .ej-d-node .dropdown-menu .dropdown-item:not(.no-results):hover, .theme-integra-dark .ej-d-node .dropdown-menu .no-results:not(.no-results):hover, .theme-integra-dark #advancedChartControl .dropdown-menu .dropdown-item:not(.no-results):hover, .theme-integra-dark #advancedChartControl .dropdown-menu .no-results:not(.no-results):hover,
.theme-integra-dark .bootstrap-select .dropdown-menu .dropdown-item:not(.no-results):hover,
.theme-integra-dark .bootstrap-select .dropdown-menu .no-results:not(.no-results):hover {
  background-color: #31383c;
}

.bootstrap-select .dropdown-menu,
.bootstrap-select .dropdown-menu li a span.text {
  font-size: 1rem !important;
}

.bootstrap-select .dropdown-menu.inner.show {
  box-shadow: none;
  border-bottom: none;
  border-right: none;
  border-left: none;
}

/** Tag attributes form **/
#attrEditForm label:first-letter {
  text-transform: capitalize;
}

.bootstrap-select .dropdown-toggle:focus, .bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
  outline: unset !important;
}

.custom-control-input:not([disabled]) ~ .custom-control-label::before, .custom-control-input:not([disabled]) ~ .custom-control-label::after {
  cursor: pointer;
}

.theme-integra .custom-control-input[disabled] ~ .custom-control-label, .theme-integra .custom-control-input:disabled ~ .custom-control-label {
  color: #8e8e8e !important;
}
.theme-integra-dark .custom-control-input[disabled] ~ .custom-control-label, .theme-integra-dark .custom-control-input:disabled ~ .custom-control-label {
  color: #c6c6c6 !important;
}

.theme-integra .custom-control-label::before {
  background-color: #d5d5d5;
  border: #d5d5d5 solid 1px;
}
.theme-integra-dark .custom-control-label::before {
  background-color: #31383c;
  border: #31383c solid 1px;
}

.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: none;
}
.theme-integra .custom-control-input:focus ~ .custom-control-label::before {
  border: 1px solid rgba(49, 154, 203, 0.4);
}
.theme-integra-dark .custom-control-input:focus ~ .custom-control-label::before {
  border: 1px solid rgba(49, 154, 203, 0.4);
}

.theme-integra .custom-checkbox .custom-control-input[disabled] ~ .custom-control-label::before, .theme-integra .custom-checkbox .custom-control-input:disabled ~ .custom-control-label::before,
.theme-integra .custom-radio .custom-control-input[disabled] ~ .custom-control-label::before, .theme-integra .custom-radio .custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #f3f3f3;
}
.theme-integra-dark .custom-checkbox .custom-control-input[disabled] ~ .custom-control-label::before, .theme-integra-dark .custom-checkbox .custom-control-input:disabled ~ .custom-control-label::before,
.theme-integra-dark .custom-radio .custom-control-input[disabled] ~ .custom-control-label::before, .theme-integra-dark .custom-radio .custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #373f44;
}

.theme-integra .custom-control-input:checked ~ .custom-control-label::before,
.theme-integra .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before,
.theme-integra .custom-radio .custom-control-input:checked ~ .custom-control-label::before {
  border-color: #319acb;
  background-color: #319acb;
}
.theme-integra-dark .custom-control-input:checked ~ .custom-control-label::before,
.theme-integra-dark .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before,
.theme-integra-dark .custom-radio .custom-control-input:checked ~ .custom-control-label::before {
  border-color: #319acb;
  background-color: #319acb;
}

.custom-control-input:disabled:checked ~ .custom-control-label::before,
.custom-control-input[disabled]:checked ~ .custom-control-label::before,
.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before,
.custom-checkbox .custom-control-input[disabled]:checked ~ .custom-control-label::before,
.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before,
.custom-radio .custom-control-input[disabled]:checked ~ .custom-control-label::before {
  border-color: rgb(151, 204, 228);
  background-color: rgb(151, 204, 228);
}

.theme-integra .custom-switch .custom-control-label::after {
  background-color: #fafafa;
}
.theme-integra-dark .custom-switch .custom-control-label::after {
  background-color: #fafafa;
}

.theme-integra .custom-switch .custom-control-label::before {
  background-color: #b4b4b4;
  border: none;
}
.theme-integra-dark .custom-switch .custom-control-label::before {
  background-color: #8e9498;
  border: none;
}

.theme-integra .custom-switch .custom-control-input[disabled] ~ .custom-control-label, .theme-integra .custom-switch .custom-control-input:disabled ~ .custom-control-label,
.theme-integra .custom-control-input[disabled] ~ .custom-control-label, .theme-integra .custom-control-input:disabled ~ .custom-control-label {
  color: #8e8e8e !important;
}
.theme-integra-dark .custom-switch .custom-control-input[disabled] ~ .custom-control-label, .theme-integra-dark .custom-switch .custom-control-input:disabled ~ .custom-control-label,
.theme-integra-dark .custom-control-input[disabled] ~ .custom-control-label, .theme-integra-dark .custom-control-input:disabled ~ .custom-control-label {
  color: #c6c6c6 !important;
}

.custom-switch .custom-control-input:checked ~ .custom-control-label::before {
  background-color: rgba(49, 154, 203, 0.4) !important;
}

.theme-integra .custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #319acb;
}
.theme-integra-dark .custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #319acb;
}

.custom-switch .custom-control-input[disabled] ~ .custom-control-label::before, .custom-switch .custom-control-input:disabled ~ .custom-control-label::before {
  background-color: rgba(142, 148, 152, 0.3) !important;
}

.theme-integra .custom-switch .custom-control-input[disabled] ~ .custom-control-label::after, .theme-integra .custom-switch .custom-control-input:disabled ~ .custom-control-label::after {
  background-color: #b4b4b4;
}
.theme-integra-dark .custom-switch .custom-control-input[disabled] ~ .custom-control-label::after, .theme-integra-dark .custom-switch .custom-control-input:disabled ~ .custom-control-label::after {
  background-color: #8e9498;
}

.custom-switch .custom-control-input[disabled]:checked ~ .custom-control-label::before, .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(142, 148, 152, 0.3) !important;
}

.custom-switch .custom-control-input[disabled]:checked ~ .custom-control-label::after, .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::after {
  background-color: rgba(49, 154, 203, 0.4);
}

.theme-integra .iti__country-list {
  background-color: #f3f3f3;
  border: 1px solid #d5d5d5;
}
.theme-integra-dark .iti__country-list {
  background-color: #373f44;
  border: 1px solid #31383c;
}

.theme-integra .iti__divider {
  border: 1px solid #d5d5d5;
}
.theme-integra-dark .iti__divider {
  border: 1px solid #31383c;
}

.theme-integra .iti__arrow {
  border-top: 4px solid #5c5c5c;
}
.theme-integra-dark .iti__arrow {
  border-top: 4px solid #fafafa;
}

.theme-integra .iti__arrow--up {
  border-bottom: 4px solid #5c5c5c;
}
.theme-integra-dark .iti__arrow--up {
  border-bottom: 4px solid #fafafa;
}

.theme-integra .iti__arrow.iti__arrow--up {
  border-top: 4px solid #f3f3f3;
}
.theme-integra-dark .iti__arrow.iti__arrow--up {
  border-top: 4px solid #373f44;
}

#assetName-error {
  order: 1;
}

@media (max-width: 766.98px) {
  .btnResponsive {
    margin-right: 0 !important;
    margin-bottom: 0.75rem !important;
  }
}

/** Scada **/
#scadaTree .e-ul.e-box:first-of-type, #layersTree .e-ul.e-box:first-of-type {
  padding-left: 0;
}

#sinoptico-toolbar {
  position: relative;
  z-index: 10;
  font-size: 12px;
}
@media (min-width: 992px) {
  #sinoptico-toolbar {
    width: calc(100% - 56px);
  }
}
.theme-integra #sinoptico-toolbar {
  background: #ffffff;
  color: #8e8e8e;
}
.theme-integra-dark #sinoptico-toolbar {
  background: #444e54;
  color: #c6c6c6;
}
#sinoptico-toolbar .list-group-item {
  background-color: transparent;
}
#sinoptico-toolbar .sinoptico-toolbar-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: 0.5s;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.16);
}
.theme-integra #sinoptico-toolbar .sinoptico-toolbar-main {
  background-color: #ffffff;
}
.theme-integra-dark #sinoptico-toolbar .sinoptico-toolbar-main {
  background-color: #444e54;
}
#sinoptico-toolbar .sinoptico-toolbar-main .sy-toolbar-leftDiv {
  padding: 0.5rem;
}
@media (max-width: 991.98px) {
  #sinoptico-toolbar .sinoptico-toolbar-main .sy-toolbar-leftDiv {
    padding: 0.15rem;
  }
}
#sinoptico-toolbar .sinoptico-toolbar-main .sy-toolbar-rightDiv {
  padding: 0.5rem;
}
@media (max-width: 1199.98px) {
  #sinoptico-toolbar .sinoptico-toolbar-main .sy-toolbar-rightDiv {
    float: right;
  }
}
@media (max-width: 991.98px) {
  #sinoptico-toolbar .sinoptico-toolbar-main .sy-toolbar-rightDiv {
    margin-right: 0;
  }
}
#sinoptico-toolbar .sinoptico-toolbar-main .sy-toolbar-rightDiv #historicalTools #slider {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
@media (max-width: 766.98px) {
  #sinoptico-toolbar .sinoptico-toolbar-main .sy-toolbar-rightDiv #historicalTools #slider {
    flex-wrap: wrap;
    justify-content: center;
  }
}
#sinoptico-toolbar .sinoptico-toolbar-main .sy-toolbar-rightDiv #historicalTools #slider #sliderDates {
  flex-grow: 1;
}
@media (max-width: 766.98px) {
  #sinoptico-toolbar .sinoptico-toolbar-main .sy-toolbar-rightDiv #historicalTools #slider #sliderDates .input-group {
    max-width: unset !important;
    padding-top: 5px;
  }
}
#sinoptico-toolbar .sinoptico-toolbar-main .sy-toolbar-rightDiv #historicalTools #slider #sliderButtons {
  /* https://css-tricks.com/value-bubbles-for-range-inputs/ */
}
#sinoptico-toolbar .sinoptico-toolbar-main .sy-toolbar-rightDiv #historicalTools #slider #sliderButtons .btn-icon {
  line-height: 1;
  text-align: center;
}
@media (max-width: 991.98px) {
  #sinoptico-toolbar .sinoptico-toolbar-main .sy-toolbar-rightDiv #historicalTools #slider #sliderButtons .btn-icon {
    padding: 0.75em 0.25em;
  }
}
#sinoptico-toolbar .sinoptico-toolbar-main .sy-toolbar-rightDiv #historicalTools #slider #sliderButtons #sliderRange {
  padding: 10px 20px;
}
#sinoptico-toolbar .sinoptico-toolbar-main .sy-toolbar-rightDiv #historicalTools #slider #sliderButtons #sliderRange #rangeValue {
  position: absolute;
  bottom: -5px;
  z-index: 55;
  opacity: 0;
  transition: opacity 0.5s ease-in;
}
#sinoptico-toolbar .sinoptico-toolbar-main .sy-toolbar-rightDiv #historicalTools #slider #sliderButtons #sliderRange #rangeValue span {
  padding: 3px 6px;
  text-align: center;
  font-size: 12px;
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  border-radius: 6px;
}
.theme-integra #sinoptico-toolbar .sinoptico-toolbar-main .sy-toolbar-rightDiv #historicalTools #slider #sliderButtons #sliderRange #rangeValue span {
  background-color: #bbbbbb;
  color: #5c5c5c;
}
.theme-integra-dark #sinoptico-toolbar .sinoptico-toolbar-main .sy-toolbar-rightDiv #historicalTools #slider #sliderButtons #sliderRange #rangeValue span {
  background-color: #292f32;
  color: #fafafa;
}
#sinoptico-toolbar .sinoptico-toolbar-main .sy-toolbar-rightDiv #historicalTools #slider #sliderButtons #sliderRange #rangeValue span:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  margin-top: -1px;
}
.theme-integra #sinoptico-toolbar .sinoptico-toolbar-main .sy-toolbar-rightDiv #historicalTools #slider #sliderButtons #sliderRange #rangeValue span:before {
  border-bottom: 10px solid #bbbbbb;
}
.theme-integra-dark #sinoptico-toolbar .sinoptico-toolbar-main .sy-toolbar-rightDiv #historicalTools #slider #sliderButtons #sliderRange #rangeValue span:before {
  border-bottom: 10px solid #292f32;
}
#sinoptico-toolbar .sinoptico-toolbar-main .sy-toolbar-rightDiv #historicalTools #slider #sliderButtons #sliderRange #rangeInput {
  width: 20vw;
  max-width: 350px;
  min-width: 150px;
}
@media (max-width: 766.98px) {
  #sinoptico-toolbar .sinoptico-toolbar-main .sy-toolbar-rightDiv #historicalTools #slider #sliderButtons #sliderRange #rangeInput {
    width: 40vw;
  }
}
#sinoptico-toolbar .sinoptico-toolbar-main .sy-toolbar-rightDiv #historicalTools #switchDataMode + label:before {
  cursor: pointer;
}
#sinoptico-toolbar .sinoptico-toolbar-main .sy-toolbar-rightDiv #historicalTools #switchDataMode + label:after {
  cursor: pointer;
}
#sinoptico-toolbar .sinoptico-toolbar-main .btn-fs-arrow {
  left: 94.5%;
  position: absolute;
  cursor: pointer;
  z-index: 50;
  padding: 0.2rem 0.5rem;
  bottom: -25px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.16);
  /*
  @include media-breakpoint-down(md) {
      display: none;
  }*/
}
.theme-integra #sinoptico-toolbar .sinoptico-toolbar-main .btn-fs-arrow {
  background-color: #ffffff;
  color: #8e8e8e;
}
.theme-integra-dark #sinoptico-toolbar .sinoptico-toolbar-main .btn-fs-arrow {
  background-color: #444e54;
  color: #c6c6c6;
}
#sinoptico-toolbar .sinoptico-toolbar-fs {
  position: absolute;
  top: -4.5vh;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: 0.5s;
  width: 100%;
  z-index: 10;
  transition: 0.5s;
}
.theme-integra #sinoptico-toolbar .sinoptico-toolbar-fs {
  background-color: #ffffff;
}
.theme-integra-dark #sinoptico-toolbar .sinoptico-toolbar-fs {
  background-color: #444e54;
}
#sinoptico-toolbar .sinoptico-toolbar-fs .sinoptico-toolbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.16);
}
#sinoptico-toolbar .sinoptico-toolbar-fs .btn-fs-arrow {
  left: 94.5%;
  position: absolute;
  cursor: pointer;
  z-index: 50;
  padding: 0.2rem 0.5rem;
  bottom: -25px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.16);
}
.theme-integra #sinoptico-toolbar .sinoptico-toolbar-fs .btn-fs-arrow {
  background-color: #ffffff;
  color: #8e8e8e;
}
.theme-integra-dark #sinoptico-toolbar .sinoptico-toolbar-fs .btn-fs-arrow {
  background-color: #444e54;
  color: #c6c6c6;
}
#sinoptico-toolbar #diagramName {
  height: 32px !important;
}

#sinopticList li {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  cursor: pointer;
  background: transparent !important;
}
.theme-integra #sinopticList li {
  color: #5c5c5c;
}
.theme-integra-dark #sinopticList li {
  color: #fafafa;
}
.theme-integra #sinopticList li:hover {
  color: #8e8e8e;
}
.theme-integra-dark #sinopticList li:hover {
  color: #c6c6c6;
}
#sinopticList li.active {
  background: transparent;
}
.theme-integra #sinopticList li.active {
  border-left: solid 7px #319acb !important;
}
.theme-integra-dark #sinopticList li.active {
  border-left: solid 7px #319acb !important;
}
#sinopticList li span {
  display: flex;
  align-items: center;
}
#sinopticList li span svg:last-of-type {
  margin-left: 0.5rem;
}
#sinopticList li:first-child {
  border-top-left-radius: 0rem;
  border-top-right-radius: 0rem;
}
#sinopticList li:last-child {
  border-bottom-right-radius: 0rem;
  border-bottom-left-radius: 0rem;
}
#sinopticList li.isHidden {
  opacity: 0.4;
}

#customSettingsNode {
  right: -40px;
  bottom: -40px;
  position: fixed;
  border-radius: 20px 20px 20px 20px;
  font-size: 1rem;
}
.theme-integra #customSettingsNode {
  background-color: #f3f3f3 !important;
}
.theme-integra-dark #customSettingsNode {
  background-color: #373f44 !important;
}
#customSettingsNode svg {
  position: relative !important;
}

/** Palette **/
#drawingTools {
  height: 100%;
}
#drawingTools #containerPalette {
  overflow-y: inherit !important;
  min-height: 100% !important;
  width: 100%;
}
#drawingTools #containerPalette #containerPalette_canvas {
  width: 100% !important;
  height: 100% !important;
  overflow: hidden;
}
#drawingTools #containerPalette #containerPalette_canvas .customPalette {
  display: flex;
  flex-direction: column;
}
#drawingTools #containerPalette #containerPalette_canvas .customPalette .e-paletteItem {
  width: 100% !important;
  padding: 0 !important;
  height: auto !important;
  margin: 0 !important;
}
#drawingTools #containerPalette #containerPalette_canvas .customPalette .e-paletteItem .e-anchor {
  width: 100%;
  display: flex !important;
  align-items: center;
}
#drawingTools #containerPalette #containerPalette_canvas .customPalette .e-paletteItem .e-anchor .foreignObject {
  width: 4rem !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
#drawingTools #containerPalette #containerPalette_canvas .customPalette .e-paletteItem .e-anchor .e-text-container {
  width: 100% !important;
  text-align: left !important;
}
#drawingTools #containerPalette #containerPalette_canvas .e-header.expanded + .e-scontent:last-child {
  display: block !important;
}
#drawingTools #containerPalette #containerPalette_canvas [id^=fake-palette-item] {
  display: none;
}
#drawingTools #containerPalette #containerPalette_canvas [id^=search-palette-item] {
  display: none;
}
#drawingTools #containerPalette .e-scrollbar {
  display: none !important;
}

/** Widgets **/
.ej-d-node .foreignObject {
  padding: 0 !important;
}

.consigna-input {
  width: 100%;
  border-radius: 0;
}

.label-unit {
  border-radius: 0px;
  border: 2px solid #666;
  display: flex;
  flex-flow: row;
  justify-content: flex-end;
}

.noborder {
  border: 0px !important;
  border-radius: 0px !important;
}

.tooltip {
  position: fixed;
}

.unit-text {
  padding: 0 0.5rem;
  color: white;
  justify-content: center;
  align-items: center;
}

.value-text {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  flex-grow: 1;
  padding: 0 0.5px;
}

/*Level gauge*/
.progress-bar {
  background-color: rgb(66, 139, 202);
  text-align: center;
}

.progress-bar-vertical {
  width: 100px;
  /*min-height: 200px;*/
  display: flex;
  align-items: flex-end;
  /*margin-right: 20px;*/
  float: left;
  background-color: transparent;
  overflow: visible;
}
.theme-integra .progress-bar-vertical {
  border: 1px solid #5c5c5c;
}
.theme-integra-dark .progress-bar-vertical {
  border: 1px solid #fafafa;
}

.progress-bar-vertical .progress-bar {
  width: 100%;
  height: 0;
  transition: height 0.6s ease;
  flex-direction: row;
  font-size: 12px;
  line-height: 12px;
  overflow: visible;
}

/*Fin Level gauge*/
/*Text not selectable*/
.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
  user-select: none; /* Non-prefixed version, currently
           not supported by any browser */
}

.collapseBtn {
  border: 1px solid rgba(34, 36, 38, 0.15);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(0, 0, 0, 0.87);
  text-transform: uppercase;
  padding: 1rem 2rem;
  background-color: white;
  box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15);
  width: 100%;
}
.occidental .collapseBtn {
  font-family: "OpenSans-Bold", sans-serif;
}
.arabic .collapseBtn {
  font-family: "NotoKufiArabic-Bold", sans-serif;
}

.collapseContent {
  padding: 1rem 2rem;
  border: 1px solid rgba(34, 36, 38, 0.15);
  background-color: white;
  box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15);
}

/*Asi ningun text de los widgets puede ser seleccionado*/
#diagram-container {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/*Widgets*/
.infoDMD-bg, .infoDMD-bg-transparent {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.infoDMD {
  position: relative;
  padding: 0 0.5rem;
  display: flex;
  height: 100%;
  width: 100%;
}

.separator {
  display: inline;
  margin-left: 10px;
  margin-right: 10px;
  border: solid 1px #d3d3d3;
  padding-top: 5px;
  padding-bottom: 5px;
}

/* Switch widget */
.toggle {
  position: relative;
  display: inline-block;
  width: inherit;
  height: inherit;
  background-color: #bbb;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  text-align: center;
}

.toggle input {
  width: 100%;
  height: 100%;
  margin: 0 0;
  padding: 0 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
}

.toggle label {
  display: block;
  position: absolute;
  top: 1px;
  right: 1px;
  bottom: 1px;
  left: 1px;
  background-image: -webkit-linear-gradient(top, #fff 0%, #ddd 50%, #fff 50%, #eee 100%);
  background-image: -moz-linear-gradient(top, #fff 0%, #ddd 50%, #fff 50%, #eee 100%);
  background-image: -ms-linear-gradient(top, #fff 0%, #ddd 50%, #fff 50%, #eee 100%);
  background-image: -o-linear-gradient(top, #fff 0%, #ddd 50%, #fff 50%, #eee 100%);
  background-image: linear-gradient(top, #fff 0%, #ddd 50%, #fff 50%, #eee 100%);
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.4), inset 0 -1px 1px #888, inset 0 -5px 1px #bbb, inset 0 -6px 0 white;
  -moz-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.4), inset 0 -1px 1px #888, inset 0 -5px 1px #bbb, inset 0 -6px 0 white;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.4), inset 0 -1px 1px #888, inset 0 -5px 1px #bbb, inset 0 -6px 0 white;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font: normal 11px Arial, Sans-Serif;
  color: #666;
  text-shadow: 0 1px 0 white;
  cursor: text;
}

.toggle label:before {
  content: attr(data-off);
  position: absolute;
  top: 21%;
  right: 0;
  left: 0;
  z-index: 4;
  transform: rotate(270deg);
}

.toggle label:after {
  content: attr(data-on);
  position: absolute;
  right: 0;
  bottom: 21%;
  left: 0;
  color: #666;
  text-shadow: 0 -1px 0 #eee;
  transform: rotate(270deg);
}

.toggle input:checked + label {
  background-image: -webkit-linear-gradient(top, #eee 0%, #ccc 50%, #fff 50%, #eee 100%);
  background-image: -moz-linear-gradient(top, #eee 0%, #ccc 50%, #fff 50%, #eee 100%);
  background-image: -ms-linear-gradient(top, #eee 0%, #ccc 50%, #fff 50%, #eee 100%);
  background-image: -o-linear-gradient(top, #eee 0%, #ccc 50%, #fff 50%, #eee 100%);
  background-image: linear-gradient(top, #eee 0%, #ccc 50%, #fff 50%, #eee 100%);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.4), inset 0 1px 7px -1px #ccc, inset 0 5px 1px #fafafa, inset 0 6px 0 white;
  -moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.4), inset 0 1px 7px -1px #ccc, inset 0 5px 1px #fafafa, inset 0 6px 0 white;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.4), inset 0 1px 7px -1px #ccc, inset 0 5px 1px #fafafa, inset 0 6px 0 white;
}

.toggle input:checked:hover + label {
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4), inset 0 1px 7px -1px #ccc, inset 0 5px 1px #fafafa, inset 0 6px 0 white;
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4), inset 0 1px 7px -1px #ccc, inset 0 5px 1px #fafafa, inset 0 6px 0 white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4), inset 0 1px 7px -1px #ccc, inset 0 5px 1px #fafafa, inset 0 6px 0 white;
}

.toggle input:checked + label:before {
  z-index: 1;
  top: 18%;
}

.toggle input:checked + label:after {
  bottom: 18%;
  color: #00D500;
  text-shadow: none;
  z-index: 4;
}

.toggle input + label:before {
  color: red;
}

.toggle input:checked + label:before {
  color: gray;
}

/*Loading*/
.spinner {
  border: 5px solid rgb(29.1666666667, 91.6666666667, 120.8333333333);
  border-radius: 70px;
  height: 100px;
  left: 45%;
  margin: -15px 0 0 -15px;
  opacity: 0;
  position: absolute;
  top: 45%;
  width: 100px;
  z-index: 1000;
  animation: pulsate 1s ease-out;
  animation-iteration-count: infinite;
}

/*Fin loading*/
/*Interruptor*/
.switch-controller {
  height: inherit;
  width: inherit;
  padding: 21%;
  position: fixed;
  top: 0%;
  cursor: pointer;
  transition: 1s;
}

.switch-base {
  width: inherit;
  height: inherit;
}

.unselectable {
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
}

/*Iframe widget*/
.wiframe-iframe-window {
  border: none;
  width: 100%;
}

.wiframe-iframe-dummy {
  border: 2px solid black;
  width: 100%;
  background: #ccc;
}

/*Onirix widget*/
.wonirix-iframe-window {
  border: none;
  width: 100%;
}

.wonirix-iframe-dummy {
  border: 2px solid black;
  width: 100%;
  background: #ccc;
}

/*Bim widget*/
.wbim-dummy {
  border: 2px solid black;
  width: 100%;
  background: #ccc;
}

/* KPI Status widget*/
.rectangle-128 {
  height: auto;
  width: 470.41px;
  transform: rotate(360deg);
  padding-bottom: 5px;
}

.seccion-linea-cpc {
  height: 28px;
  width: 360px;
  color: #4A4A4A;
  font-size: 12px;
  line-height: 35px;
  text-transform: uppercase;
}
.occidental .seccion-linea-cpc {
  font-family: "OpenSans-Bold", sans-serif;
}
.arabic .seccion-linea-cpc {
  font-family: "NotoKufiArabic-Bold", sans-serif;
}

.valor-kpi {
  height: 16px;
  width: 64px;
  color: #252525;
  font-size: 12px;
  line-height: 17px;
}
.occidental .valor-kpi {
  font-family: "OpenSans-Bold", sans-serif;
}
.arabic .valor-kpi {
  font-family: "NotoKufiArabic-Bold", sans-serif;
}

.texto-info {
  height: 16px;
  width: 96px;
  color: #9B9B9B;
  font-family: "Open Sans";
  font-size: 9px;
  line-height: 13px;
}

.texto-info-origen {
  height: 16px;
  color: #9B9B9B;
  font-family: "Open Sans";
  font-size: 9px;
  line-height: 13px;
}

.detalle-info {
  height: 16px;
  width: 212px;
  color: #252525;
  font-size: 12px;
  line-height: 17px;
}
.occidental .detalle-info {
  font-family: "OpenSans-Bold", sans-serif;
}
.arabic .detalle-info {
  font-family: "NotoKufiArabic-Bold", sans-serif;
}

.grid-item-centered {
  display: flex;
  align-items: center;
}

.mask {
  box-sizing: border-box;
  height: 41px;
  width: 130px;
  border: 1px solid #6F1E8A;
  border-radius: 3px;
  background-color: #FFFFFF;
  box-shadow: 0 2px 2px 0 rgba(35, 35, 35, 0.2);
}

.kpi-label {
  height: 24px;
  width: 87px;
  color: #6F1E8A;
  font-family: "Open Sans";
  font-size: 17px;
  line-height: 22px;
  padding-left: 14px;
}

.e-ddl.e-widget {
  width: 100% !important;
}

/* TOGGLE SWICH */
.toggle {
  background-color: transparent;
  display: flex;
  align-items: center;
  border-radius: 36px;
}
.toggle:hover {
  cursor: pointer;
}

.toggle-switch {
  width: 100%;
  height: 100%;
  /*overflow: hidden;*/
  border-radius: 38px;
  display: flex;
  border: 2px solid #333;
  align-items: center;
}
.toggle-switch:after {
  content: " ";
  display: block;
  width: 40%;
  height: 100%;
  background-color: #333;
  border-top: 0;
  border-bottom: 0;
  margin-left: 60%;
  transition: all 0.1s ease-in-out;
  box-shadow: 2px 2px 16px 0 rgba(0, 0, 0, 0.2), 2px 2px 0px 0 rgba(0, 0, 0, 0.19);
  border-radius: 36px;
}
.active .toggle-switch:after {
  margin-left: 0%;
}

.toggle-switch.disabled {
  box-shadow: inset -20px -20px 20px 20px rgba(0, 0, 0, 0.2), inset -20px -20px 20px 20px rgba(0, 0, 0, 0.19);
}

.toggle-label {
  display: inline-block;
  position: absolute;
  width: 64%;
  font-size: 12px;
  text-align: center;
  text-transform: uppercase;
}

.toggle-label-off {
  display: block;
  left: 0;
}

.toggle-label-on {
  display: none;
}

.active .toggle-label-off {
  display: none;
}
.active .toggle-label-on {
  display: block;
  right: 0;
}

.toggleCB {
  width: 100%;
  height: 100%;
}
.toggleCB .switchWidgetCheckboxContainer {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.toggleCB .switchWidgetCheckboxContainer .switchWidgetCheckboxInput {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  display: inline-block;
}
.toggleCB .switchWidgetCheckboxContainer label {
  text-transform: uppercase;
}

/** Consigna Valores **/
.tagContainer {
  height: 100%;
  border: 2px solid #ccc;
  display: flex;
  align-items: center;
  box-shadow: 0px 0px 0px 0 #a9a9a9;
}
.tagContainer:hover {
  cursor: pointer;
}
.tagContainer .label-unit {
  border-radius: 0;
  border: none;
  width: initial;
  height: 100%;
  display: flex;
  align-items: center;
  flex: 2;
  justify-content: center;
}
.tagContainer .label-unit .unit-text {
  min-width: 40%;
}
.tagContainer .chevron-block {
  background-color: #ccc;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  font-size: 1rem;
}

.tagSpecialContainer {
  height: 100%;
  border: none;
  display: flex;
  align-items: center;
  box-shadow: 0px 0px 0px 0 #a9a9a9;
  justify-content: flex-start;
}
.tagSpecialContainer .noborder {
  border: 0px !important;
  border-radius: 0px !important;
}
.tagSpecialContainer:hover {
  cursor: pointer;
}
.tagSpecialContainer .value-text {
  display: flex;
  align-items: center;
  height: 100%;
}
.tagSpecialContainer .unit-text {
  width: 100%;
}
.tagSpecialContainer .unit-text div:empty {
  height: 100%;
}
.tagSpecialContainer .unit-text:first-of-type {
  flex-grow: 1;
}

/** Indicator **/
.indicatorContainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  flex-direction: column;
}
.indicatorContainer svg {
  position: relative;
}
.indicatorContainer .value-text {
  flex-grow: 0;
}

/** Clock **/
.clockContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.clockContainer .value-text {
  background-color: transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

/** Dynamic Rectangle **/
.dynamicRectContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  cursor: pointer;
}
.dynamicRectContainer .value-text {
  background-color: transparent;
  flex-grow: 0;
  display: inline-block;
  width: 100%;
}

/** SQL param **/
.sqlParamContainer {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

/** Alarm **/
.alarmContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  cursor: pointer;
}
.alarmContainer .value-text {
  background-color: transparent;
  flex-grow: 0;
  display: inline-block;
  width: 100%;
}

/** Dynamic Circle **/
.dynamicCircleContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  border-radius: 50% !important;
  margin: 0 auto;
  position: relative;
}
.dynamicCircleContainer img {
  position: absolute;
}
.dynamicCircleContainer .value-text {
  background-color: transparent;
  flex-grow: 0;
  display: inline-block;
  width: 100%;
  padding: 0 !important;
  z-index: 1;
}

/** Push Button **/
.pushButtonContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #ccc;
  box-shadow: 4px 4px 0px 0 #a9a9a9;
  border-radius: 50%;
  margin: 0 auto;
  border: 1px solid #666;
}
.pushButtonContainer .pushButtonSubContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  margin: 0 auto;
  width: 90%;
  height: 90%;
  background-color: white;
  position: relative;
  border: 1px solid #666;
}
.pushButtonContainer .pushButtonSubContainer .value-text {
  height: 92%;
  border: 1px solid #666;
  border-radius: 50%;
  width: 92%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset -9px -14px 19px 0px rgba(0, 0, 0, 0.2), 0px 2px 0px 0 rgba(0, 0, 0, 0.19);
  flex-grow: 0;
}
.pushButtonContainer .pushButtonSubContainer .value-text:hover {
  cursor: pointer;
  box-shadow: inset -6px -6px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/** Magic Ruler **/
.magicRulerContainer {
  width: 100%;
  height: 100%;
  background-color: transparent;
  display: flex;
  flex-direction: column-reverse;
}
.magicRulerContainer .magicRulerSubContainer {
  width: 100%;
  max-height: 100%;
  height: 100%;
  background-color: transparent;
  position: relative;
  border: 2px solid #666;
  transition: all 0.6s ease;
}
.magicRulerContainer .magicRulerSubContainer .level {
  height: 100%;
  width: calc(100% - 2px);
  position: absolute;
  background-color: skyblue;
  bottom: 0;
  left: 1px;
  max-width: 100%;
}
.magicRulerContainer .magicRulerSubContainer .label {
  position: absolute;
  padding: 2px;
  background-color: #fff;
  font-size: 20px;
  border: 1px solid #666;
  border-radius: 4px;
  line-height: 1;
}
.magicRulerContainer .magicRulerSubContainer .label:before {
  position: absolute;
  content: "";
  background-image: none;
  z-index: 2;
  width: 0.6666em;
  height: 0.6666em;
  transition: background 0.1s ease;
  background: inherit;
  border-width: 0 0 1px 1px;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  bottom: auto;
  right: auto;
  top: 50%;
  left: 0;
  border-color: #666;
  border-style: solid;
}
.magicRulerContainer .left-orientation .label:before {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  right: auto;
  left: 0;
}
.magicRulerContainer .right-orientation .label:before {
  transform: translateX(55%) translateY(-50%) rotate(225deg);
  left: auto;
  right: 0;
}

/** Analog Measurer **/
.analogMeasurerContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 2px solid #666;
  background-color: #ccc;
  box-shadow: 4px 4px 0px 0 #a9a9a9;
}
.analogMeasurerContainer .analogMeasurerSubContainer {
  width: 96%;
  height: 90%;
  background-color: white;
  position: relative;
  border: 1px solid #666;
}
.analogMeasurerContainer .analogMeasurerSubContainer .level {
  height: 100%;
  position: absolute;
  background-color: skyblue;
  top: 0;
  left: 0;
  max-width: 100%;
  border: 1px solid #666;
  transition: width 0.6s ease;
}
.analogMeasurerContainer .analogMeasurerSubContainer .bar {
  height: 100%;
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  transition: width 0.6s ease;
  max-width: 100%;
  border-right: 2px solid red;
}

.sub_analogMeasurerContainer {
  height: 93%;
  position: absolute;
  top: 0;
  left: 0;
  margin: 1%;
  max-width: 100%;
}

.barLevel {
  height: 93%;
  background-color: red;
  width: 1%;
  position: absolute;
  top: 0;
  margin: 1%;
}

/** Activated Alarms **/
.activatedAlarmsContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.activatedAlarmsContainer .line {
  width: 100%;
  height: 2px;
  background-color: black;
  position: absolute;
  z-index: 1;
}
.activatedAlarmsContainer .block {
  width: 100%;
  height: 100%;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}
.activatedAlarmsContainer .block .alarmBlock {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: lightgrey;
  border: 3px solid lightgrey;
  height: 100%;
  width: 27%;
  box-shadow: 4px 4px 0px 0 #a9a9a9;
  color: black;
}
.occidental .activatedAlarmsContainer .block .alarmBlock {
  font-family: "OpenSans-Bold", sans-serif;
}
.arabic .activatedAlarmsContainer .block .alarmBlock {
  font-family: "NotoKufiArabic-Bold", sans-serif;
}

/** Table **/
.widget-grid table {
  border-collapse: inherit;
  border-spacing: 0;
}

.widget-grid-padding {
  padding: 0.282rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

.widget-grid-cell {
  font-size: 14px;
}

.table-responsive {
  min-height: 0.01%;
  overflow-x: auto;
}

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
  font-size: 0.8rem;
}
.theme-integra .table {
  color: #5c5c5c;
}
.theme-integra-dark .table {
  color: #fafafa;
}
.theme-integra .table thead th {
  background-color: #f3f3f3;
  border-bottom: 1px solid #d5d5d5;
  border-left: none;
  border-right: none;
  border-top: none;
}
.theme-integra-dark .table thead th {
  background-color: #373f44;
  border-bottom: 1px solid #31383c;
  border-left: none;
  border-right: none;
  border-top: none;
}
.theme-integra .table tbody td {
  background-color: #f7f7f7;
  border: 1px solid #d5d5d5;
  border-left: none;
  border-right: none;
}
.theme-integra-dark .table tbody td {
  background-color: #3f484d;
  border: 1px solid #31383c;
  border-left: none;
  border-right: none;
}

.blink_meBgWhite {
  animation: blinkerBgWhite 1s linear infinite;
}

.blink_me {
  animation: blinker 2s linear infinite;
}

/** Map **/
.gm-style-iw-c {
  padding-bottom: 12px !important;
  padding-right: 12px !important;
  border-radius: 0px !important;
  font-weight: 300;
  font-size: 13px;
}
.theme-integra .gm-style-iw-c {
  background-color: #ffffff;
  color: #5c5c5c;
}
.theme-integra-dark .gm-style-iw-c {
  background-color: #444e54;
  color: #fafafa;
}

.gm-style-iw-d {
  overflow: hidden !important;
}

.theme-integra .gm-style .gm-style-iw-t::after {
  background: #ffffff;
}
.theme-integra-dark .gm-style .gm-style-iw-t::after {
  background: #444e54;
}

.theme-integra .gm-ui-hover-effect > span {
  background-color: #5c5c5c;
}
.theme-integra-dark .gm-ui-hover-effect > span {
  background-color: #fafafa;
}

.theme-integra .gm-style .gm-style-iw-tc::after {
  background: #ffffff;
}
.theme-integra-dark .gm-style .gm-style-iw-tc::after {
  background: #444e54;
}

/** Jerarquía **/
#configTreeContainer #scadaTreeEdit {
  max-height: 77vh;
  overflow: auto;
}

/** Context menu (lista sinópticos) **/
.theme-integra .context-menu-list {
  background: #ffffff !important;
  border: 1px solid #ffffff;
}
.theme-integra-dark .context-menu-list {
  background: #444e54 !important;
  border: 1px solid #444e54;
}
.theme-integra .context-menu-list .context-menu-item {
  background-color: #ffffff;
  color: #5c5c5c;
}
.theme-integra-dark .context-menu-list .context-menu-item {
  background-color: #444e54;
  color: #fafafa;
}
.theme-integra .context-menu-list .context-menu-item .context-menu-icon.context-menu-icon--fa5 i, .theme-integra .context-menu-list .context-menu-item .context-menu-icon.context-menu-icon--fa5 svg {
  color: #319acb;
}
.theme-integra-dark .context-menu-list .context-menu-item .context-menu-icon.context-menu-icon--fa5 i, .theme-integra-dark .context-menu-list .context-menu-item .context-menu-icon.context-menu-icon--fa5 svg {
  color: #319acb;
}
.theme-integra .context-menu-list .context-menu-item.context-menu-hover {
  background-color: #319acb;
  color: #8e8e8e;
}
.theme-integra-dark .context-menu-list .context-menu-item.context-menu-hover {
  background-color: #319acb;
  color: #c6c6c6;
}
.theme-integra .context-menu-list .context-menu-item.context-menu-hover .context-menu-icon.context-menu-icon--fa5 i, .theme-integra .context-menu-list .context-menu-item.context-menu-hover .context-menu-icon.context-menu-icon--fa5 svg {
  color: #8e8e8e;
}
.theme-integra-dark .context-menu-list .context-menu-item.context-menu-hover .context-menu-icon.context-menu-icon--fa5 i, .theme-integra-dark .context-menu-list .context-menu-item.context-menu-hover .context-menu-icon.context-menu-icon--fa5 svg {
  color: #c6c6c6;
}

/** Context menu (sinópticos favoritos/por defecto) **/
.theme-integra .context-menu-icon.context-menu-icon--fa5.context-menu-hover > i, .theme-integra .context-menu-icon.context-menu-icon--fa5.context-menu-hover > svg {
  color: #5c5c5c;
}
.theme-integra-dark .context-menu-icon.context-menu-icon--fa5.context-menu-hover > i, .theme-integra-dark .context-menu-icon.context-menu-icon--fa5.context-menu-hover > svg {
  color: #fafafa;
}

img {
  vertical-align: inherit;
}

.highcharts-3d-frame {
  pointer-events: auto;
}

.theme-integra .chartDistribucionContainer.stackedColumnsChart .highcharts-legend .highcharts-point {
  fill: #333333 !important;
}
.theme-integra-dark .chartDistribucionContainer.stackedColumnsChart .highcharts-legend .highcharts-point {
  fill: #E0E0E3 !important;
}

.theme-integra .chartDistribucionContainer.stackedColumnsChart .highcharts-legend .highcharts-legend-item-hidden .highcharts-point {
  fill: #ccc !important;
}
.theme-integra-dark .chartDistribucionContainer.stackedColumnsChart .highcharts-legend .highcharts-legend-item-hidden .highcharts-point {
  fill: #606063 !important;
}

.theme-integra .chartDistribucionContainer.stackedColumnsChart .highcharts-legend .highcharts-legend-item-hidden .subseriesSymbol {
  fill: #ccc !important;
}
.theme-integra-dark .chartDistribucionContainer.stackedColumnsChart .highcharts-legend .highcharts-legend-item-hidden .subseriesSymbol {
  fill: #606063 !important;
}

[id$=_hch] [id$=_addInfoMenu], #advancedChartControl [id$=_addInfoMenu] {
  width: fit-content;
}
.theme-integra [id$=_hch] [id$=_addInfoMenu] .card-header, .theme-integra #advancedChartControl [id$=_addInfoMenu] .card-header {
  background: #ffffff;
}
.theme-integra-dark [id$=_hch] [id$=_addInfoMenu] .card-header, .theme-integra-dark #advancedChartControl [id$=_addInfoMenu] .card-header {
  background: #444e54;
}

.context-menu-icon.context-menu-icon--fa5 svg {
  top: 0.42em;
}

#sideBarHierarchyTreeGrid .ag-checkbox-input {
  pointer-events: none !important;
}

@media only screen and (max-width: 1500px) {
  .sinoptico-toolbar-main {
    display: block !important;
  }
  .sinoptico-toolbar-main.d-flex {
    display: flex !important;
  }
  .sinoptico-toolbar-main.d-none {
    display: none !important;
  }
  .sy-toolbar-leftDiv {
    padding: 0 0.5rem !important;
  }
  .sy-toolbar-rightDiv {
    float: right;
  }
}
#diagram-container_canvas_htmlLayer > [id$=_parentdiv] > [id$=_html] {
  transition: box-shadow 0.75s ease-in-out;
}

#infoForecast > svg.fa-circle-info {
  position: relative;
}

.theme-integra .card-template-selected {
  border: 1px solid #387c9b;
}
.theme-integra-dark .card-template-selected {
  border: 1px solid #387c9b;
}

#templatesList .templatesAlbum {
  height: 62vh;
  overflow: auto;
  min-height: 290px;
}

#tmpl_createOrEditModelSynoptic .templatesAlbum {
  height: 25vh;
  overflow: auto;
  min-height: 290px;
}

.card-template .card-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.card-template .templateThumbnailContainer {
  max-width: 300px;
  max-height: 300px;
  text-align: center;
}

#templateCanvasContainer {
  min-width: 100%;
  min-height: 300px;
}
#templateCanvasContainer img {
  max-height: 55vh;
}

.widgetBootstrapSelector {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  align-items: center;
}
.widgetBootstrapSelector .form-control {
  min-height: unset !important;
  border: none;
  height: 100%;
}
.widgetBootstrapSelector .form-control:disabled, .widgetBootstrapSelector .form-control.disabled, .widgetBootstrapSelector .form-control[readonly], .widgetBootstrapSelector .form-control[disabled] {
  background-color: transparent !important;
  border: none !important;
  color: inherit !important;
}

.scada .bootstrap-select .filter-option-inner {
  height: 100%;
  display: flex;
  align-items: center;
}
.scada .bootstrap-select .filter-option-inner .filter-option-inner-inner {
  flex-grow: 1;
}

.bootstrap-select .dropup .dropdown-toggle::after {
  border-bottom: 0;
}

.goTo-synoptic-wrapper:hover .btn-goTo-bg {
  opacity: 0.75;
  box-shadow: inset 0 0 0 3px #BBBBBB;
}
.goTo-synoptic-wrapper:hover .btn-goTo-bg-transparent {
  box-shadow: inset 0 0 0 1px #2098D1, 0 0 1px transparent;
  background-color: rgba(203, 179, 179, 0.25) !important;
}
.goTo-synoptic-wrapper .btn-goTo-bg, .goTo-synoptic-wrapper .btn-goTo-bg-transparent {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -webkit-transition-duration: 0.5s;
  -webkit-transition-property: background-color;
  -webkit-transform: perspective(1px) translateZ(0);
  transition-property: box-shadow, background-color;
  transition-duration: 0.5s;
  transform: perspective(1px) translateZ(0);
}
.goTo-synoptic-wrapper .btn-goTo-synoptic {
  position: relative;
  padding: 0 0.5rem;
  display: flex;
  height: 100%;
  width: 100%;
  cursor: pointer;
}
.goTo-synoptic-wrapper .btn-goTo-synoptic .btn-goTo-synoptic-text {
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  max-width: 100%;
  flex-grow: 1;
}
.goTo-synoptic-wrapper .btn-goTo-synoptic .btn-goTo-synoptic-text[style*="text-align: left"] {
  margin-left: 0.5rem;
}
.goTo-synoptic-wrapper .btn-goTo-synoptic .btn-goTo-synoptic-text[style*="text-align: right"] {
  margin-right: 0.5rem;
}
.goTo-synoptic-wrapper .btn-goTo-synoptic .btn-goTo-synoptic-text[style*="align-self: flex-start"] {
  margin-top: 0.5rem;
}
.goTo-synoptic-wrapper .btn-goTo-synoptic .btn-goTo-synoptic-text[style*="align-self: flex-end"] {
  margin-bottom: 0.5rem;
}
.goTo-synoptic-wrapper .btn-goto-select {
  font-size: unset !important;
  padding: 0.4em 1em;
}
.goTo-synoptic-wrapper .btn.dropdown-toggle {
  line-height: 1.5;
  text-transform: none;
}

[id^=Selec_Vista_Variables] .dropdown-toggle::after, .goTo-synoptic-wrapper .dropdown-toggle::after {
  border-bottom: unset;
  margin-left: auto;
}

/** ERROR PAGE **/
#contentError {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0085AD 0%, #40A3C1 100%), #80C2D6;
}
#contentError #backgroundImage {
  position: absolute;
  bottom: -10%;
  left: 12%;
  z-index: 1;
}
@media (min-width: 1200px) {
  #contentError #backgroundImage {
    width: 45%;
    left: 8%;
  }
}
@media (min-width: 767px) and (max-width: 1199.98px) {
  #contentError #backgroundImage {
    width: 50%;
    left: 0%;
    bottom: -8%;
  }
}
@media (max-width: 991.98px) {
  #contentError #backgroundImage {
    width: 75%;
    left: 40%;
    bottom: -3%;
  }
}
@media (max-width: 766.98px) {
  #contentError #backgroundImage {
    width: 104%;
    left: 20%;
    bottom: -6%;
  }
}
#contentError #backgroundImage img {
  width: 80%;
}
#contentError .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#contentError .container #brand {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 10%;
  width: 20%;
}
@media (min-width: 767px) and (max-width: 1199.98px) {
  #contentError .container #brand {
    width: 28%;
  }
}
@media (max-width: 991.98px) {
  #contentError .container #brand {
    width: 45%;
  }
}
@media (max-width: 766.98px) {
  #contentError .container #brand {
    width: 60%;
  }
}
#contentError .container #brand img {
  width: 100%;
}
#contentError .container #errorContainer {
  background-color: white;
  border-radius: 10px;
  padding: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 50%;
}
@media (min-width: 767px) and (max-width: 1199.98px) {
  #contentError .container #errorContainer {
    padding: 3rem;
  }
}
@media (max-width: 991.98px) {
  #contentError .container #errorContainer {
    width: 85%;
  }
}
@media (max-width: 766.98px) {
  #contentError .container #errorContainer {
    padding: 1rem;
  }
}
#contentError .container #errorContainer #title_error {
  font-family: FiraSansCondensed-Light;
  color: #319ACB;
  font-size: 3rem;
}
#contentError .container #errorContainer #label_error {
  margin: 2rem 1rem;
  color: rgba(0, 0, 0, 0.95);
}
#contentError .container #errorContainer #btnContainer {
  z-index: 10;
}
@media (min-width: 767px) and (max-width: 1199.98px) {
  #contentError .container #errorContainer #btnContainer {
    margin-top: 0 !important;
  }
}

/** AdvancedChart **/
#advancedChartControl {
  display: flex !important;
  width: 100%;
}
#advancedChartControl .chartButtons #changeTimeData_container {
  min-width: 300px;
}
#advancedChartControl .chartButtons #onChangeTimeData, #advancedChartControl .chartButtons #onVerticalLines, #advancedChartControl .chartButtons #onLinearRegression, #advancedChartControl .chartButtons #onFixedTooltips, #advancedChartControl .chartButtons #onExcelExport, #advancedChartControl .chartButtons #onExecuteChart {
  flex-shrink: 0;
}
#advancedChartControl .sidebarPanel {
  height: 64vh;
  overflow-x: hidden;
  overflow-y: auto;
  border-bottom: 1px solid transparent !important;
  display: flex;
  flex-direction: column;
  width: 50%;
  margin-top: 0;
  transform: translate3d(0%, 0%, 0);
  visibility: visible;
  transition: all 0.3s ease 0.1s;
}
.theme-integra #advancedChartControl .sidebarPanel {
  background-color: #ffffff;
  color: #5c5c5c;
}
.theme-integra-dark #advancedChartControl .sidebarPanel {
  background-color: #444e54;
  color: #fafafa;
}
#advancedChartControl .sidebarPanel .sidebarMenu {
  width: 57px;
  min-height: 100%;
  display: block;
}
.theme-integra #advancedChartControl .sidebarPanel .sidebarMenu {
  background: #ffffff;
}
.theme-integra-dark #advancedChartControl .sidebarPanel .sidebarMenu {
  background: #444e54;
}
#advancedChartControl .sidebarPanel .sidebarMenu .nav-link {
  opacity: 0.5;
  margin: 0.7em 0 !important;
  width: 57px !important;
  text-align: center;
}
.theme-integra #advancedChartControl .sidebarPanel .sidebarMenu .nav-link {
  color: #8e8e8e !important;
}
.theme-integra-dark #advancedChartControl .sidebarPanel .sidebarMenu .nav-link {
  color: #c6c6c6 !important;
}
#advancedChartControl .sidebarPanel .sidebarMenu .nav-link.active,
#advancedChartControl .sidebarPanel .sidebarMenu .nav-link:hover {
  opacity: 1;
  background: transparent !important;
  border-color: transparent !important;
}
#advancedChartControl .sidebarPanel .sidebarMenu .btnControlChartSidebar {
  bottom: 1em;
  right: 2%;
  padding-left: 1.6em;
  position: fixed;
  cursor: pointer;
  z-index: 100;
  transition-property: all;
  transition-delay: 0.3s;
}
#advancedChartControl .sidebarPanel .sidebarContent {
  transition: all 0.3s ease 0.1s;
  visibility: visible;
  overflow: auto;
}
.theme-integra #advancedChartControl .sidebarPanel .sidebarContent {
  background: #ffffff;
}
.theme-integra-dark #advancedChartControl .sidebarPanel .sidebarContent {
  background: #444e54;
}
#advancedChartControl .sidebarPanel .sidebarContent .mainTab {
  min-height: calc(100vh - 61px);
  width: 100%;
}
#advancedChartControl .sidebarPanel .sidebarContent .secondaryTab h6 {
  text-decoration: underline;
}
#advancedChartControl .sidebarPanel .sidebarContent > .tab-pane {
  overflow-y: auto;
  overflow-x: hidden;
}
#advancedChartControl .chartPanel {
  height: 64vh;
  width: 50%;
  padding-left: 0.5rem;
}
#advancedChartControl .chartPanel #chart-container {
  transition: 0.5s;
}
#advancedChartControl .chartPanel #chart-container .chart {
  height: 100%;
  width: 100%;
}
#advancedChartControl .chartPanel #chart-container .chart .highcharts-tooltip span {
  font-size: 0.8rem !important;
}
#advancedChartControl .chartPanel #chart-container .chart .hc-tooltip-text, #advancedChartControl .chartPanel #chart-container .chart .highcharts-tooltip-box, #advancedChartControl .chartPanel #chart-container .chart .highcharts-tooltip-header {
  color: #292F32;
}
#advancedChartControl.active .formButtons, #advancedChartControl.active #changeTimeData_container {
  max-width: max-content;
}
#advancedChartControl.active .formButtons .btnControlChartSidebar, #advancedChartControl.active #changeTimeData_container .btnControlChartSidebar {
  transform: rotate(180deg) !important;
  right: 0;
}
.theme-integra #advancedChartControl.active .formButtons .btnControlChartSidebar, .theme-integra #advancedChartControl.active #changeTimeData_container .btnControlChartSidebar {
  color: #8e8e8e !important;
}
.theme-integra-dark #advancedChartControl.active .formButtons .btnControlChartSidebar, .theme-integra-dark #advancedChartControl.active #changeTimeData_container .btnControlChartSidebar {
  color: #c6c6c6 !important;
}
#advancedChartControl.active .sidebarPanel {
  width: 0px;
  transition: all 0.3s ease 0.1s;
  display: none !important;
}
#advancedChartControl.active .sidebarPanel .sidebarContent {
  width: 0;
}
#advancedChartControl.active .sidebarPanel .sidebarContent .tab-pane {
  visibility: hidden;
}
#advancedChartControl.active .chartPanel {
  padding-left: 0;
  width: 100%;
}
#advancedChartControl.active .chartPanel .chart-toolbar {
  width: calc(100% - 64px);
}
@media (max-width: 767px) {
  #advancedChartControl .formButtons {
    margin-bottom: 0.5rem;
  }
  #advancedChartControl .chartButtons > div {
    flex-wrap: wrap;
  }
  #advancedChartControl .chartButtons > div #changeTimeData_container {
    margin-bottom: 0.5rem;
  }
  #advancedChartControl .formButtons, #advancedChartControl .chartButtons {
    flex-basis: 100%;
    max-width: 100% !important;
  }
  #advancedChartControl .formButtons > div, #advancedChartControl .chartButtons > div {
    justify-content: center !important;
  }
  #advancedChartControl:not(.active) .chartPanel {
    width: 0px;
    transition: all 0.3s ease 0.1s;
    display: none !important;
  }
  #advancedChartControl:not(.active) .sidebarPanel {
    width: 100%;
  }
}
#advancedChartControl .chart-toolbar {
  transition: 0.5s;
}
#advancedChartControl .chart-toolbar .chart-toolbar-container {
  padding: 0.5rem 0;
}

.nexusMain #advancedChartControl > .container-fluid, .nexusMain #advancedChartControl > .container-sm, .nexusMain #advancedChartControl > .container-md, .nexusMain #advancedChartControl > .container-lg, .nexusMain #advancedChartControl > .container-xl {
  padding: 0px !important;
}

.jsPanel-content #advancedChartControl .sidebarPanel {
  height: 79vh;
}
.jsPanel-content #advancedChartControl > .container-fluid, .jsPanel-content #advancedChartControl > .container-sm, .jsPanel-content #advancedChartControl > .container-md, .jsPanel-content #advancedChartControl > .container-lg, .jsPanel-content #advancedChartControl > .container-xl {
  padding: 1rem 3rem !important;
}
@media (max-width: 767px) {
  .jsPanel-content #advancedChartControl > .container-fluid, .jsPanel-content #advancedChartControl > .container-sm, .jsPanel-content #advancedChartControl > .container-md, .jsPanel-content #advancedChartControl > .container-lg, .jsPanel-content #advancedChartControl > .container-xl {
    padding: 1rem 1rem !important;
  }
}
.jsPanel-content #advancedChartControl .chartPanel {
  height: 79vh;
}
.theme-integra .jsPanel-content #advancedChartControl .hc-tooltip-text, .theme-integra .jsPanel-content #advancedChartControl .highcharts-tooltip-box, .theme-integra .jsPanel-content #advancedChartControl .highcharts-tooltip-header {
  color: #333333 !important;
}
.theme-integra-dark .jsPanel-content #advancedChartControl .hc-tooltip-text, .theme-integra-dark .jsPanel-content #advancedChartControl .highcharts-tooltip-box, .theme-integra-dark .jsPanel-content #advancedChartControl .highcharts-tooltip-header {
  color: #E0E0E3 !important;
}

.highcharts-legend-item-hidden > text {
  text-decoration: unset !important;
}

/** MAPS STUFF **/
.propertiesViewer {
  width: 25vw;
  height: 50vh;
  top: 100px;
  right: 25px;
  z-index: 1;
  font-size: 120% !important;
  overflow: auto;
  box-shadow: 0 0 20px rgba(34, 36, 38, 0.15);
}
.theme-integra .propertiesViewer {
  color: #319acb !important;
}
.theme-integra-dark .propertiesViewer {
  color: #319acb !important;
}
.occidental .propertiesViewer {
  font-family: "OpenSans-Regular", sans-serif !important;
}
.arabic .propertiesViewer {
  font-family: "NotoKufiArabic-Regular", sans-serif !important;
}
.theme-integra .propertiesViewer .closeButton {
  background: #ffffff !important;
}
.theme-integra-dark .propertiesViewer .closeButton {
  background: #444e54 !important;
}

.mapContainer {
  position: relative;
}
.theme-integra .mapContainer {
  background-color: #f3f3f3 !important;
}
.theme-integra-dark .mapContainer {
  background-color: #373f44 !important;
}

@media not (pointer: coarse) {
  /* Only not touchable desktop devices */
  .desktop .mapContainer .btn-map-popUp-container {
    display: none !important;
  }
}
.theme-integra .popup-container {
  background: #ffffff !important;
}
.theme-integra-dark .popup-container {
  background: #444e54 !important;
}
.popup-container [id^=popup-closer_] > svg {
  position: unset;
}
.popup-container .popup-caret {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  left: 0;
  bottom: -0.68rem;
}
.theme-integra .popup-container .popup-caret {
  color: #ffffff !important;
}
.theme-integra-dark .popup-container .popup-caret {
  color: #444e54 !important;
}
.popup-container .popup-caret label > svg {
  left: calc(50% - 4px);
}

.go-overlay .popup-container .popup-caret {
  bottom: -0.56rem;
}

[id^=wmap_] .popup-caret > svg {
  position: unset;
}

/* Zoom buttons */
.ol-zoom, .customZoomLIGHT.ol-control, .customZoomDARK.ol-control {
  left: 8px;
  display: none;
  font-size: 18px;
}

.ol-center {
  left: 120px;
  display: flex;
  font-size: 18px;
}

.theme-integra .ol-overlay-container .ol-popup {
  box-shadow: 3px 3px 10px rgba(68, 78, 84, 0.04) !important;
}
.theme-integra-dark .ol-overlay-container .ol-popup {
  box-shadow: 3px 3px 10px rgba(41, 47, 50, 0.12) !important;
}

.ol-zoom, .ol-center, .customZoomLIGHT.ol-control, .customZoomDARK.ol-control {
  top: 8px;
  filter: unset !important;
  background-color: transparent !important;
}
.ol-zoom button, .ol-center button, .customZoomLIGHT.ol-control button, .customZoomDARK.ol-control button {
  width: 48px !important;
  height: 44px !important;
  line-height: unset;
  margin: unset !important;
  margin-right: 8px !important;
  border: 1px solid !important;
  border-radius: 4px !important;
  font-size: unset !important;
}
.theme-integra .ol-zoom button, .theme-integra .ol-center button, .theme-integra .customZoomLIGHT.ol-control button, .theme-integra .customZoomDARK.ol-control button {
  border-color: #5c5c5c !important;
  color: #5c5c5c !important;
}
.theme-integra-dark .ol-zoom button, .theme-integra-dark .ol-center button, .theme-integra-dark .customZoomLIGHT.ol-control button, .theme-integra-dark .customZoomDARK.ol-control button {
  border-color: #fafafa !important;
  color: #fafafa !important;
}
.ol-zoom button:hover, .ol-center button:hover, .customZoomLIGHT.ol-control button:hover, .customZoomDARK.ol-control button:hover {
  outline: none;
}

.mapNotificationPanel {
  left: 0px;
  bottom: 0px;
  position: absolute;
  padding-left: 1em;
  height: 50px;
}
.mapNotificationPanel .msg {
  margin-left: 50px;
  margin-top: 10px;
}

#mapLegend {
  position: absolute;
  right: 50px;
  bottom: 50px;
  display: flex;
  align-items: end;
}
#mapLegend #mapLegendContainer {
  padding: 0.5rem 1rem;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  max-width: 250px;
}
.theme-integra #mapLegend #mapLegendContainer {
  background-color: #f3f3f3 !important;
}
.theme-integra-dark #mapLegend #mapLegendContainer {
  background-color: #373f44 !important;
}
#mapLegend #mapLegendContainer #mapLegendElements {
  padding: 0 1rem 0 0;
  max-height: 300px;
  overflow: auto;
}

/* Nexus Color Picker Control*/
/* Input */
.nexusColorPickerControlInput {
  height: 100%;
  line-height: 14px;
  font-size: 14px;
  padding: 0.5rem;
  border-radius: 2px;
  min-width: 125px;
  display: inline-block;
  border: none;
}
.theme-integra .nexusColorPickerControlInput {
  border: 1px solid #d5d5d5;
}
.theme-integra-dark .nexusColorPickerControlInput {
  border: 1px solid #31383c;
}
.theme-integra .nexusColorPickerControlInput:disabled, .theme-integra .nexusColorPickerControlInput[readonly], .theme-integra .nexusColorPickerControlInput[disabled] {
  background-color: !important;
  color: !important;
  opacity: !important;
}
.theme-integra-dark .nexusColorPickerControlInput:disabled, .theme-integra-dark .nexusColorPickerControlInput[readonly], .theme-integra-dark .nexusColorPickerControlInput[disabled] {
  background-color: !important;
  color: !important;
  opacity: !important;
}

#advancedChartControl .nexusColorPickerControlInput,
#chartContainer .nexusColorPickerControlInput {
  border: none !important;
}

#nexusColorPickerControlPanel {
  z-index: 100000000;
  position: absolute;
  width: 264px;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.21);
}
#nexusColorPickerControlPanel .nexusColorPickerControlPanelCellColor {
  width: 24px;
  height: 24px;
  display: inline-block;
  border-radius: 0.25rem;
}
.theme-integra #nexusColorPickerControlPanel .nexusColorPickerControlPanelCellColor {
  border: 1px solid #d5d5d5;
}
.theme-integra-dark #nexusColorPickerControlPanel .nexusColorPickerControlPanelCellColor {
  border: 1px solid #31383c;
}

/** SWAL **/
.swal2-popup {
  border-radius: 0;
  border: none;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  padding: 0;
}
.theme-integra .swal2-popup {
  background-color: #ffffff;
  color: #5c5c5c;
}
.theme-integra-dark .swal2-popup {
  background-color: #444e54;
  color: #fafafa;
}
.swal2-popup .swal2-header {
  flex-direction: row;
  padding: 0.75rem 1rem;
  position: relative;
  font-size: 1rem;
}
.occidental .swal2-popup .swal2-header {
  font-family: "OpenSans-Regular", sans-serif;
}
.arabic .swal2-popup .swal2-header {
  font-family: "NotoKufiArabic-Regular", sans-serif;
}
.theme-integra .swal2-popup .swal2-header {
  background-color: #f7f7f7;
  border-bottom: 1px solid #f7f7f7;
  color: #5c5c5c;
}
.theme-integra-dark .swal2-popup .swal2-header {
  background-color: #3f484d;
  border-bottom: 1px solid #3f484d;
  color: #fafafa;
}
.swal2-popup .swal2-header .swal2-icon {
  width: 20px;
  height: 20px;
  border: 1px solid transparent;
  margin: 0 1rem 0 0;
}
.swal2-popup .swal2-header .swal2-icon .swal2-icon-content {
  font-size: 16px;
}
.theme-integra .swal2-popup .swal2-header .swal2-error {
  color: #e37272;
  border-color: #e37272;
}
.theme-integra-dark .swal2-popup .swal2-header .swal2-error {
  color: #e37272;
  border-color: #e37272;
}
.theme-integra .swal2-popup .swal2-header .swal2-question,
.theme-integra .swal2-popup .swal2-header .swal2-warning,
.theme-integra .swal2-popup .swal2-header .swal2-info {
  color: #319acb;
  border-color: #319acb;
}
.theme-integra-dark .swal2-popup .swal2-header .swal2-question,
.theme-integra-dark .swal2-popup .swal2-header .swal2-warning,
.theme-integra-dark .swal2-popup .swal2-header .swal2-info {
  color: #319acb;
  border-color: #319acb;
}
.theme-integra .swal2-popup .swal2-header .swal2-success {
  color: #92c089;
  border-color: #92c089;
}
.theme-integra-dark .swal2-popup .swal2-header .swal2-success {
  color: #92c089;
  border-color: #92c089;
}
.swal2-popup .swal2-header .swal2-title {
  font-size: 16px;
  margin-bottom: 0;
  font-weight: 300;
}
.theme-integra .swal2-popup .swal2-header .swal2-title {
  color: #5c5c5c;
}
.theme-integra-dark .swal2-popup .swal2-header .swal2-title {
  color: #fafafa;
}
.swal2-popup .swal2-header .swal2-close {
  font-weight: 400;
  overflow: visible;
  height: 100%;
  display: block !important;
  font-size: 2rem;
  padding-right: 1rem;
}
.theme-integra .swal2-popup .swal2-header .swal2-close {
  color: #8e8e8e;
}
.theme-integra-dark .swal2-popup .swal2-header .swal2-close {
  color: #c6c6c6;
}
.theme-integra .swal2-popup .swal2-header .swal2-close:hover {
  color: #5c5c5c;
}
.theme-integra-dark .swal2-popup .swal2-header .swal2-close:hover {
  color: #fafafa;
}
.swal2-popup .swal2-content {
  text-align: left;
  font-size: 14px;
  padding: 40px 16px;
}
.theme-integra .swal2-popup .swal2-content {
  color: #5c5c5c;
}
.theme-integra-dark .swal2-popup .swal2-content {
  color: #fafafa;
}
.swal2-popup .swal2-actions {
  justify-content: end;
  padding: 0.75rem 1rem;
  margin-top: 0;
}
.theme-integra .swal2-popup .swal2-actions {
  background: #f7f7f7;
}
.theme-integra-dark .swal2-popup .swal2-actions {
  background: #3f484d;
}
.swal2-popup .swal2-actions .swal2-styled.swal2-confirm {
  font-size: 0.75rem;
}
.theme-integra .swal2-popup .swal2-actions .swal2-styled.swal2-confirm {
  background-color: #319acb;
  color: white;
  border-color: #319acb;
}
.theme-integra-dark .swal2-popup .swal2-actions .swal2-styled.swal2-confirm {
  background-color: #319acb;
  color: white;
  border-color: #319acb;
}
.swal2-popup .swal2-actions .swal2-styled.swal2-deny,
.swal2-popup .swal2-actions .swal2-styled.swal2-cancel {
  font-size: 0.75rem;
}
.theme-integra .swal2-popup .swal2-actions .swal2-styled.swal2-deny,
.theme-integra .swal2-popup .swal2-actions .swal2-styled.swal2-cancel {
  border: 1px solid #5c5c5c !important;
  color: #5c5c5c !important;
  background-color: transparent;
}
.theme-integra-dark .swal2-popup .swal2-actions .swal2-styled.swal2-deny,
.theme-integra-dark .swal2-popup .swal2-actions .swal2-styled.swal2-cancel {
  border: 1px solid #fafafa !important;
  color: #fafafa !important;
  background-color: transparent;
}
.theme-integra .swal2-popup .swal2-actions .swal2-styled.swal2-deny.disabled,
.theme-integra .swal2-popup .swal2-actions .swal2-styled.swal2-cancel.disabled {
  border: 1px solid #b4b4b4 !important;
  color: #b4b4b4 !important;
}
.theme-integra-dark .swal2-popup .swal2-actions .swal2-styled.swal2-deny.disabled,
.theme-integra-dark .swal2-popup .swal2-actions .swal2-styled.swal2-cancel.disabled {
  border: 1px solid #8e9498 !important;
  color: #8e9498 !important;
}
.theme-integra .swal2-popup .swal2-actions .swal2-styled.swal2-deny:hover, .theme-integra .swal2-popup .swal2-actions .swal2-styled.swal2-deny.active,
.theme-integra .swal2-popup .swal2-actions .swal2-styled.swal2-cancel:hover,
.theme-integra .swal2-popup .swal2-actions .swal2-styled.swal2-cancel.active {
  border: 1px solid #5c5c5c !important;
  color: #5c5c5c !important;
  background: rgba(92, 92, 92, 0.1) !important;
}
.theme-integra-dark .swal2-popup .swal2-actions .swal2-styled.swal2-deny:hover, .theme-integra-dark .swal2-popup .swal2-actions .swal2-styled.swal2-deny.active,
.theme-integra-dark .swal2-popup .swal2-actions .swal2-styled.swal2-cancel:hover,
.theme-integra-dark .swal2-popup .swal2-actions .swal2-styled.swal2-cancel.active {
  border: 1px solid #fafafa !important;
  color: #fafafa !important;
  background: rgba(250, 250, 250, 0.08) !important;
}
.theme-integra .swal2-popup .swal2-actions .swal2-styled.swal2-deny.active,
.theme-integra .swal2-popup .swal2-actions .swal2-styled.swal2-cancel.active {
  box-shadow: rgba(213, 213, 213, 0.75) !important;
}
.theme-integra-dark .swal2-popup .swal2-actions .swal2-styled.swal2-deny.active,
.theme-integra-dark .swal2-popup .swal2-actions .swal2-styled.swal2-cancel.active {
  box-shadow: gba(142, 148, 152, 0.3) !important;
}
.theme-integra .swal2-popup .swal2-container.swal2-backdrop-show {
  background: rgba(213, 213, 213, 0.8);
}
.theme-integra-dark .swal2-popup .swal2-container.swal2-backdrop-show {
  background: rgba(41, 47, 50, 0.8);
}

.swal2-container {
  overflow-y: overlay !important;
}

/** Annotation circle **/
.annotationCircle {
  width: 50px;
  height: 50px;
  background-color: #319ACB;
  border-radius: 50%;
  position: absolute;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  right: 50px;
  bottom: 50px;
}
.annotationCircle .iconBtnLink {
  font-size: 20px !important;
  margin-right: 0;
}
.annotationCircle .iconBtnLink, .annotationCircle .iconBtnLink:hover {
  color: #fff !important;
  text-decoration: none;
}

.popover.annotationPopover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  max-width: 455px !important;
  width: 100% !important;
}
.theme-integra .popover.annotationPopover {
  background-color: #ffffff;
}
.theme-integra-dark .popover.annotationPopover {
  background-color: #444e54;
}
.popover.annotationPopover .popover-header {
  background-color: transparent !important;
}
.theme-integra .popover.annotationPopover .popover-header {
  color: #5c5c5c !important;
  border-bottom: 1px solid #bbbbbb !important;
}
.theme-integra-dark .popover.annotationPopover .popover-header {
  color: #fafafa !important;
  border-bottom: 1px solid #292f32 !important;
}
.popover.annotationPopover .pop-buttons {
  justify-content: space-evenly;
}
.popover.annotationPopover .popover-body {
  white-space: pre-wrap;
}
.theme-integra .popover.annotationPopover .popover-body {
  color: #5c5c5c !important;
}
.theme-integra-dark .popover.annotationPopover .popover-body {
  color: #fafafa !important;
}
.popover.annotationPopover .popover-footer {
  padding: 0 0.75rem 0.5rem 0.75rem;
}
.theme-integra .popover.annotationPopover .popover-footer {
  color: #5c5c5c !important;
}
.theme-integra-dark .popover.annotationPopover .popover-footer {
  color: #fafafa !important;
}
.theme-integra .popover.annotationPopover.bs-popover-top .arrow::after, .theme-integra .popover.annotationPopover.bs-popover-auto[x-placement^=top] .arrow::after, .theme-integra .popover.annotationPopover.bs-popover-bottom .arrow::after, .theme-integra .popover.annotationPopover.bs-popover-auto[x-placement^=bottom] .arrow::after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.theme-integra-dark .popover.annotationPopover.bs-popover-top .arrow::after, .theme-integra-dark .popover.annotationPopover.bs-popover-auto[x-placement^=top] .arrow::after, .theme-integra-dark .popover.annotationPopover.bs-popover-bottom .arrow::after, .theme-integra-dark .popover.annotationPopover.bs-popover-auto[x-placement^=bottom] .arrow::after {
  border-top-color: #444e54;
  border-bottom-color: #444e54;
}
.theme-integra .popover.annotationPopover.bs-popover-right .arrow::after, .theme-integra .popover.annotationPopover.bs-popover-auto[x-placement^=right] .arrow::after, .theme-integra .popover.annotationPopover.bs-popover-left .arrow::after, .theme-integra .popover.annotationPopover.bs-popover-auto[x-placement^=left] .arrow::after {
  border-left-color: #ffffff;
  border-right-color: #ffffff;
}
.theme-integra-dark .popover.annotationPopover.bs-popover-right .arrow::after, .theme-integra-dark .popover.annotationPopover.bs-popover-auto[x-placement^=right] .arrow::after, .theme-integra-dark .popover.annotationPopover.bs-popover-left .arrow::after, .theme-integra-dark .popover.annotationPopover.bs-popover-auto[x-placement^=left] .arrow::after {
  border-left-color: #444e54;
  border-right-color: #444e54;
}

/** Global alarms **/
.globalAlarmsWarning.annotationCircle {
  background-color: #c6c6c6;
  left: 82px;
  bottom: 24px;
  width: 80px;
  height: 80px;
  z-index: 1001;
}
@media (max-width: 991.98px) {
  .globalAlarmsWarning.annotationCircle {
    left: 24px;
    bottom: 24px;
    z-index: 10000;
  }
}
@media (max-width: 766.98px) {
  .globalAlarmsWarning.annotationCircle {
    left: 24px;
    bottom: 24px;
    z-index: 10000;
  }
}
.globalAlarmsWarning.annotationCircle .iconBtnLink {
  font-size: 35px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.theme-integra .globalAlarmsWarning.annotationCircle .iconBtnLink {
  color: #5c5c5c !important;
}
.theme-integra-dark .globalAlarmsWarning.annotationCircle .iconBtnLink {
  color: #fafafa !important;
}

.globalAlarmsWarning.annotationCircle.activated {
  background-color: #f00;
}
.globalAlarmsWarning.annotationCircle.activated .iconBtnLink {
  color: white !important;
  cursor: pointer;
}

/** TENANTS **/
#full-screen-toolbar {
  position: absolute;
  top: -4.5vh;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: 0.5s;
}
.theme-integra #full-screen-toolbar {
  background-color: #ffffff;
}
.theme-integra-dark #full-screen-toolbar {
  background-color: #444e54;
}

#full-screen-toolbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.16);
}

#full-screen-toolbar-chevron-down {
  left: 94.5%;
  position: absolute;
  cursor: pointer;
  z-index: 50;
  padding: 0.2rem 0.5rem;
  bottom: -25px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.16);
}
.theme-integra #full-screen-toolbar-chevron-down {
  background-color: #ffffff;
  color: #8e8e8e;
}
.theme-integra-dark #full-screen-toolbar-chevron-down {
  background-color: #444e54;
  color: #c6c6c6;
}

div[id^=go-btn-toc_] {
  width: 48px;
  height: 44px;
  position: absolute;
  z-index: 9;
  top: 8px;
  right: 8px;
  cursor: pointer;
  border-radius: 5px;
  border: 1px solid;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
  background-size: 22px 22px;
  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;
}
.theme-integra div[id^=go-btn-toc_] {
  background-color: #f3f3f3;
  border-color: #5c5c5c !important;
  color: #5c5c5c !important;
}
.theme-integra-dark div[id^=go-btn-toc_] {
  background-color: #373f44;
  border-color: #fafafa !important;
  color: #fafafa !important;
}
.theme-integra div[id^=go-btn-toc_]:hover, .theme-integra div[id^=go-btn-toc_].btn-active {
  background-color: #ffffff !important;
}
.theme-integra-dark div[id^=go-btn-toc_]:hover, .theme-integra-dark div[id^=go-btn-toc_].btn-active {
  background-color: #444e54 !important;
}
.theme-integra div[id^=go-btn-toc_].btn-active {
  box-shadow: rgba(213, 213, 213, 0.75) !important;
}
.theme-integra-dark div[id^=go-btn-toc_].btn-active {
  box-shadow: gba(142, 148, 152, 0.3) !important;
}

div[id^=toc-container_] {
  position: absolute;
  z-index: 8;
  top: 0px;
  right: 0px;
  user-select: none;
  font-family: "OpenSans-Regular", sans-serif !important;
}
div[id^=toc-container_] .ownTocContainerPanel {
  display: none;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  right: 8px !important;
  top: 58px !important;
  width: 280px;
}
.theme-integra div[id^=toc-container_] .ownTocContainerPanel {
  background-color: #f3f3f3 !important;
}
.theme-integra-dark div[id^=toc-container_] .ownTocContainerPanel {
  background-color: #373f44 !important;
}
div[id^=toc-container_] .ownTocContainerPanel.active {
  display: block !important;
}
.theme-integra div[id^=toc-container_] .ownTocContainerPanel .ownTocHeader, .theme-integra div[id^=toc-container_] .ownTocContainerPanel .ownTocBodyContFolder {
  border-bottom: 1px solid !important;
}
.theme-integra-dark div[id^=toc-container_] .ownTocContainerPanel .ownTocHeader, .theme-integra-dark div[id^=toc-container_] .ownTocContainerPanel .ownTocBodyContFolder {
  border-bottom: 1px solid !important;
}
div[id^=toc-container_] .ownTocContainerPanel .ownTocHeader .ownTocBodyFolderSwitcher, div[id^=toc-container_] .ownTocContainerPanel .ownTocBodyContFolder .ownTocBodyFolderSwitcher {
  margin-top: 6px;
}
div[id^=toc-container_] .ownTocContainerPanel .ownTocBodyContainer {
  display: grid !important;
}
div[id^=toc-container_] .ownTocContainerPanel .ownTocBodyContainer .ownTocBodyContFolder .ownTocBodyFolderElem {
  font-size: 16px !important;
}
div[id^=toc-container_] .ownTocContainerPanel .ownTocBodyContainer .ownTocBodyContFolder .ownTocBodyFolderElem .ownTocBodyFolderName {
  font-family: "OpenSans-Regular", sans-serif !important;
}
div[id^=toc-container_] .ownTocContainerPanel .ownTocBodyContainer .ownTocBodyContFolder .ownTocBodySubFolderElem {
  display: flex;
  flex-direction: column;
}
div[id^=toc-container_] .ownTocContainerPanel .ownTocBodyContainer .ownTocBodyContFolder .ownTocBodySubFolderElem input + .slider {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.theme-integra div[id^=toc-container_] .ownTocContainerPanel .ownTocBodyContainer .ownTocBodyContFolder .ownTocBodySubFolderElem input + .slider {
  background-color: #f3f3f3;
  border: #d5d5d5 solid 1px;
}
.theme-integra-dark div[id^=toc-container_] .ownTocContainerPanel .ownTocBodyContainer .ownTocBodyContFolder .ownTocBodySubFolderElem input + .slider {
  background-color: #373f44;
  border: #31383c solid 1px;
}
div[id^=toc-container_] .ownTocContainerPanel .ownTocBodyContainer .ownTocBodyContFolder .ownTocBodySubFolderElem input + .slider:before {
  height: 14px;
  width: 14px;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.theme-integra div[id^=toc-container_] .ownTocContainerPanel .ownTocBodyContainer .ownTocBodyContFolder .ownTocBodySubFolderElem input + .slider:before {
  background-color: #FFFFFF;
}
.theme-integra-dark div[id^=toc-container_] .ownTocContainerPanel .ownTocBodyContainer .ownTocBodyContFolder .ownTocBodySubFolderElem input + .slider:before {
  background-color: #ADB5BD;
}
div[id^=toc-container_] .ownTocContainerPanel .ownTocBodyContainer .ownTocBodyContFolder .ownTocBodySubFolderElem input:checked + .slider {
  background-color: #319ACB;
}
div[id^=toc-container_] .ownTocContainerPanel .ownTocBodyContainer .ownTocBodyContFolder .ownTocBodySubFolderElem input:checked + .slider:before {
  transform: translate(18px);
}
.theme-integra div[id^=toc-container_] .ownTocContainerPanel .ownTocBodyContainer .ownTocBodyContFolder .ownTocBodySubFolderElem input:checked + .slider:before {
  background-color: #FFFFFF;
}
.theme-integra-dark div[id^=toc-container_] .ownTocContainerPanel .ownTocBodyContainer .ownTocBodyContFolder .ownTocBodySubFolderElem input:checked + .slider:before {
  background-color: #ADB5BD;
}
div[id^=toc-container_] .ownTocContainerPanel .ownTocBodyContainer .ownTocBodyContFolder .ownTocBodySubFolderElem input[type=checkbox] {
  line-height: normal;
}
div[id^=toc-container_] .ownTocContainerPanel .ownTocBodyContainer .ownTocBodyContFolder .ownTocBodySubFolderElem input[type=checkbox].ownTocBodyChBoxLayer:checked:after, div[id^=toc-container_] .ownTocContainerPanel .ownTocBodyContainer .ownTocBodyContFolder .ownTocBodySubFolderElem input[type=checkbox].ownTocBodyChBoxLayer:not(:disabled):checked:hover:after {
  width: 13px !important;
  height: 13px !important;
}
div[id^=toc-container_] .ownTocContainerPanel .ownTocBodyContainer .ownTocBodyContFolder .ownTocBodySubFolderElem input[type=checkbox].ownTocBodyChBoxLayer:not(:disabled):not(:checked):after {
  background-image: none !important;
  top: -11px;
}
.theme-integra div[id^=toc-container_] .ownTocContainerPanel .ownTocBodyContainer .ownTocBodyContFolder .ownTocBodySubFolderElem input[type=checkbox].ownTocBodyChBoxLayer:not(:disabled):not(:checked):after {
  border: 1px solid #d5d5d5;
  background-color: #FFFFFF;
}
.theme-integra-dark div[id^=toc-container_] .ownTocContainerPanel .ownTocBodyContainer .ownTocBodyContFolder .ownTocBodySubFolderElem input[type=checkbox].ownTocBodyChBoxLayer:not(:disabled):not(:checked):after {
  border: 1px solid #31383c;
  background-color: #ADB5BD;
}
div[id^=toc-container_] .ownTocContainerPanel .ownTocBodyContainer .ownTocBodyContFolder .ownTocBodySubFolderElem input[type=checkbox].ownTocBodyChBoxLayer:before {
  border: none;
}
div[id^=toc-container_] .ownTocContainerPanel .ownTocBodyContainer .ownTocBodyContFolder .ownTocBodySubFolderElem .checkbox__toc-container {
  white-space: nowrap;
}
div[id^=toc-container_] .ownTocContainerPanel .ownTocBodyContainer .ownTocBodyContFolder .ownTocBodySubFolderElem label {
  font-size: 16px !important;
}

div[id^=btnRefreshLayers_], div[id^=btnRefreshIsolines_] {
  width: 48px;
  height: 44px;
  position: absolute;
  z-index: 9;
  top: 8px;
  cursor: pointer;
  border-radius: 5px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  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;
  font-size: 18px;
}
.theme-integra div[id^=btnRefreshLayers_], .theme-integra div[id^=btnRefreshIsolines_] {
  background-color: #f3f3f3;
  border-color: #5c5c5c !important;
  color: #5c5c5c !important;
}
.theme-integra-dark div[id^=btnRefreshLayers_], .theme-integra-dark div[id^=btnRefreshIsolines_] {
  background-color: #373f44;
  border-color: #fafafa !important;
  color: #fafafa !important;
}
.theme-integra div[id^=btnRefreshLayers_]:hover, .theme-integra div[id^=btnRefreshLayers_].btn-active, .theme-integra div[id^=btnRefreshIsolines_]:hover, .theme-integra div[id^=btnRefreshIsolines_].btn-active {
  background-color: #ffffff !important;
}
.theme-integra-dark div[id^=btnRefreshLayers_]:hover, .theme-integra-dark div[id^=btnRefreshLayers_].btn-active, .theme-integra-dark div[id^=btnRefreshIsolines_]:hover, .theme-integra-dark div[id^=btnRefreshIsolines_].btn-active {
  background-color: #444e54 !important;
}
.theme-integra div[id^=btnRefreshLayers_].btn-active, .theme-integra div[id^=btnRefreshIsolines_].btn-active {
  box-shadow: 0px 0px 1px 2px #319ACB !important;
}
.theme-integra-dark div[id^=btnRefreshLayers_].btn-active, .theme-integra-dark div[id^=btnRefreshIsolines_].btn-active {
  box-shadow: 0px 0px 1px 2px #319ACB !important;
}

div[id^=btnRefreshLayers_] {
  right: 64px;
}

div[id^=btnRefreshIsolines_] {
  right: 120px;
}

div[id^=menuRefreshIsolines_] {
  transform: translate3d(0px, 0px, 0px) !important;
  left: unset !important;
  right: 120px !important;
  top: 55px !important;
  border: 0px !important;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2) !important;
  font-family: "OpenSans-Regular", sans-serif !important;
}
.theme-integra div[id^=menuRefreshIsolines_] {
  background-color: !important;
}
.theme-integra-dark div[id^=menuRefreshIsolines_] {
  background-color: !important;
}
div[id^=menuRefreshIsolines_] label {
  font-size: 16px !important;
}

.collapse {
  visibility: unset !important;
}

.go_ifc_button-icon svg {
  position: unset !important;
}

#go-ifc-components-ui-side-content * {
  color: #fff !important;
}
