@charset "UTF-8";
:root {
  --color-primary: #1f83a5;
  --color-secondary: #007697;
  --color-success: #7acd56;
  --color-danger: #f44336;
  --color-warning: #ffc107;
  --color-info: #17a2b8;
  --bg-body: #dbdcdd;
  --bg-page: #ebedef;
  --bg-card: #dddddd;
  --bg-sidebar: #314a65;
  --bg-sidebar-head: #273b55;
  --bg-navbar: #d6ebff;
  --text-sidebar: #ffffff;
  --text-sidebar-head: #ffffff;
  --width-sidebar: 220px;
  --width-sidebar-collapsed: 60px;
  --height-navbar: 75px;
  --spacing-base: 10px;
  --spacing-content: 10px;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #888 #f0f0f0;
}

*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

*::-webkit-scrollbar-track {
  background: #f0f0f0;
}

*::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 4px;
  border: 2px solid transparent;
  background-clip: content-box;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

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

:root {
  --color-primary: #1f83a5;
  --color-secondary: #007697;
  --color-success: #7acd56;
  --color-danger: #f44336;
  --color-warning: #ffc107;
  --color-info: #17a2b8;
  --bg-body: #dbdcdd;
  --bg-page: #ebedef;
  --bg-card: #dddddd;
  --bg-sidebar: #314a65;
  --bg-sidebar-head: #273b55;
  --bg-navbar: #d6ebff;
  --text-sidebar: #ffffff;
  --text-sidebar-head: #ffffff;
  --width-sidebar: 220px;
  --width-sidebar-collapsed: 60px;
  --height-navbar: 75px;
  --spacing-base: 10px;
  --spacing-content: 10px;
}

body {
  font-family: "Arial", sans-serif;
}

code,
pre,
.font-monospace {
  font-family: "Consolas", "Monaco", monospace;
}

.fs-pt-8 {
  font-size: 8pt;
}

.fs-pt-9 {
  font-size: 9pt;
}

.fs-pt-10 {
  font-size: 10pt;
}

.fs-pt-12 {
  font-size: 12pt;
}

.fs-sub,
.fs-subtle {
  font-size: 0.8em;
}

.text-small {
  font-size: 0.9rem;
}

.text-tiny {
  font-size: 0.8rem;
}

.title {
  display: block;
  color: #baffcc;
  font-size: 1.3rem;
}
.title.title-sub {
  color: #9f9f9f;
  font-size: 0.8em;
}

:root {
  --color-primary: #1f83a5;
  --color-secondary: #007697;
  --color-success: #7acd56;
  --color-danger: #f44336;
  --color-warning: #ffc107;
  --color-info: #17a2b8;
  --bg-body: #dbdcdd;
  --bg-page: #ebedef;
  --bg-card: #dddddd;
  --bg-sidebar: #314a65;
  --bg-sidebar-head: #273b55;
  --bg-navbar: #d6ebff;
  --text-sidebar: #ffffff;
  --text-sidebar-head: #ffffff;
  --width-sidebar: 220px;
  --width-sidebar-collapsed: 60px;
  --height-navbar: 75px;
  --spacing-base: 10px;
  --spacing-content: 10px;
}

body {
  color: #222222;
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #dbdcdd;
  position: relative;
  box-shadow: 0px 0px 7px 3px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  body {
    width: 100%;
  }
}
@media (min-width: 768px) {
  body {
    width: 1300px;
    margin: auto;
  }
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.breadcrumb {
  margin: 0px;
  padding: 0px;
}

.image-fade-in {
  opacity: 0;
  animation: fadeIn 1.5s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@keyframes growWidth {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
:root {
  --color-primary: #1f83a5;
  --color-secondary: #007697;
  --color-success: #7acd56;
  --color-danger: #f44336;
  --color-warning: #ffc107;
  --color-info: #17a2b8;
  --bg-body: #dbdcdd;
  --bg-page: #ebedef;
  --bg-card: #dddddd;
  --bg-sidebar: #314a65;
  --bg-sidebar-head: #273b55;
  --bg-navbar: #d6ebff;
  --text-sidebar: #ffffff;
  --text-sidebar-head: #ffffff;
  --width-sidebar: 220px;
  --width-sidebar-collapsed: 60px;
  --height-navbar: 75px;
  --spacing-base: 10px;
  --spacing-content: 10px;
}

.sidebar, .container-sidebar {
  color: var(--text-sidebar);
  height: 100%;
  width: 220px;
  background-color: var(--bg-sidebar);
  top: 0;
  left: 0;
  z-index: 1000;
  transition: width 0.3s ease;
  flex: 0 0 auto;
  padding: 75px 0;
}
.sidebar li, .container-sidebar li {
  margin: 0;
}
.sidebar #infoCharacterSelected > div, .container-sidebar #infoCharacterSelected > div,
.sidebar #infoUser > div,
.container-sidebar #infoUser > div {
  display: flex;
  justify-content: space-between;
}
.sidebar .nav-item.active, .container-sidebar .nav-item.active {
  background-color: var(--color-secondary);
}
.sidebar__header, .sidebar-header {
  color: var(--text-sidebar-head);
  background-color: var(--bg-sidebar-head);
  height: 75px;
  padding: 10px;
  width: 220px;
  position: absolute;
  top: 0;
  z-index: 9;
  display: block;
}
.sidebar__footer, .sidebar-footer {
  color: var(--text-sidebar-head);
  background-color: var(--bg-sidebar-head);
  padding: 10px;
  text-align: right;
  width: 220px;
  position: absolute;
  bottom: 0;
  z-index: 9;
  display: block;
}
.sidebar__user-info, .sidebar-user-info {
  display: block;
}
.sidebar__menu, .sidebar-menu-content {
  font-size: 0.9rem;
  overflow-y: auto;
  scrollbar-width: none;
}
.sidebar__menu::-webkit-scrollbar, .sidebar-menu-content::-webkit-scrollbar {
  display: none;
}
.sidebar__menu, .sidebar-menu-content {
  box-shadow: inset 0px 0px 20px -10px black;
}
.sidebar__menu-list, .sidebar-menu-list {
  list-style: none;
  padding: 0;
}
.sidebar__menu-list a, .sidebar-menu-list a {
  text-decoration: none;
}
.sidebar__menu-item, .sidebar-menu-item {
  padding: 5px 15px;
}
.sidebar__menu-item:hover, .sidebar-menu-item:hover {
  background-color: var(--color-secondary);
}
.sidebar__menu-item:has(.nav-link.collapsed):hover, .sidebar-menu-item:has(.nav-link.collapsed):hover {
  background-color: var(--color-secondary);
}
.sidebar__menu-item .bi, .sidebar-menu-item .bi {
  display: inline-block;
  width: 30px;
  text-align: center;
}
.sidebar__menu-item--sub, .sidebar-menu-sub .sidebar-menu-item {
  font-size: smaller;
  padding: 5px 15px;
}
.sidebar__menu-item--sub .sidebar__menu-item, .sidebar-menu-sub .sidebar-menu-item .sidebar__menu-item, .sidebar__menu-item--sub .sidebar-menu-item, .sidebar-menu-sub .sidebar-menu-item .sidebar-menu-item {
  font-size: smaller;
}
.sidebar__item-title, .sidebar-item-title {
  text-transform: uppercase;
  padding: 30px 0 5px 20px;
  font-size: 0.9rem;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.45);
}
.sidebar__item-text, .sidebar-item-text {
  color: var(--text-sidebar);
  display: inline-block;
  left: 45px;
}
.sidebar__divider, .sidebar-divider {
  height: 2px;
  margin: 10px 0;
  background-color: rgba(255, 255, 255, 0.1);
}
.sidebar__toggle-icon::after, .toggleIcon::after {
  display: inline-block;
  content: "";
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708z"/></svg>');
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
}
.sidebar__toggle-icon--collapsed::after, .toggleIcon.collapsed::after {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708"/></svg>');
}
.sidebar--collapsed, .sidebar-collapsed {
  width: 60px;
}
.sidebar--collapsed .sidebar__header, .sidebar-collapsed .sidebar__header, .sidebar--collapsed .sidebar-header, .sidebar-collapsed .sidebar-header,
.sidebar--collapsed .sidebar__footer,
.sidebar-collapsed .sidebar__footer,
.sidebar--collapsed .sidebar-footer,
.sidebar-collapsed .sidebar-footer,
.sidebar--collapsed .sidebar__user-info,
.sidebar-collapsed .sidebar__user-info,
.sidebar--collapsed .sidebar-user-info,
.sidebar-collapsed .sidebar-user-info,
.sidebar--collapsed .sidebar__item-text,
.sidebar-collapsed .sidebar__item-text,
.sidebar--collapsed .sidebar-item-text,
.sidebar-collapsed .sidebar-item-text,
.sidebar--collapsed .sidebar__toggle-icon,
.sidebar--collapsed .toggleIcon,
.sidebar-collapsed .sidebar__toggle-icon,
.sidebar-collapsed .toggleIcon,
.sidebar--collapsed .title,
.sidebar-collapsed .title {
  display: none;
}
.sidebar--collapsed .nav-item, .sidebar-collapsed .nav-item {
  text-align: center;
}
.sidebar--collapsed .nav-item i, .sidebar-collapsed .nav-item i {
  padding: 0;
}
.sidebar--collapsed:hover, .sidebar-collapsed:hover {
  width: 220px;
}
.sidebar--collapsed:hover .sidebar__header, .sidebar-collapsed:hover .sidebar__header, .sidebar--collapsed:hover .sidebar-header, .sidebar-collapsed:hover .sidebar-header,
.sidebar--collapsed:hover .sidebar__footer,
.sidebar-collapsed:hover .sidebar__footer,
.sidebar--collapsed:hover .sidebar-footer,
.sidebar-collapsed:hover .sidebar-footer,
.sidebar--collapsed:hover .title,
.sidebar-collapsed:hover .title {
  display: block;
}
.sidebar--collapsed:hover .sidebar__item-text, .sidebar-collapsed:hover .sidebar__item-text, .sidebar--collapsed:hover .sidebar-item-text, .sidebar-collapsed:hover .sidebar-item-text,
.sidebar--collapsed:hover .sidebar__toggle-icon,
.sidebar--collapsed:hover .toggleIcon,
.sidebar-collapsed:hover .sidebar__toggle-icon,
.sidebar-collapsed:hover .toggleIcon {
  display: inline-block;
}
.sidebar--collapsed:hover .nav-item, .sidebar-collapsed:hover .nav-item {
  text-align: initial;
}
.sidebar--collapsed:hover .nav-item i, .sidebar-collapsed:hover .nav-item i {
  padding: initial;
}

.nav-sub .sidebar-item-text {
  left: 55px;
}

:root {
  --color-primary: #1f83a5;
  --color-secondary: #007697;
  --color-success: #7acd56;
  --color-danger: #f44336;
  --color-warning: #ffc107;
  --color-info: #17a2b8;
  --bg-body: #dbdcdd;
  --bg-page: #ebedef;
  --bg-card: #dddddd;
  --bg-sidebar: #314a65;
  --bg-sidebar-head: #273b55;
  --bg-navbar: #d6ebff;
  --text-sidebar: #ffffff;
  --text-sidebar-head: #ffffff;
  --width-sidebar: 220px;
  --width-sidebar-collapsed: 60px;
  --height-navbar: 75px;
  --spacing-base: 10px;
  --spacing-content: 10px;
}

.header-wrapper {
  color: #222222;
  background-color: #ffffff;
}

.navbar-main {
  color: rgb(0, 83.487804878, 163);
  background-color: #d6ebff;
  height: 75px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.navbar-main__menu, .navbar .nav-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  height: 60px;
  font-weight: bold;
  list-style: none;
}
.navbar-main__item {
  cursor: pointer;
  margin: 0 10px;
}

.navbar {
  color: rgb(0, 83.487804878, 163);
  background-color: #d6ebff;
  height: 75px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.navbar .nav-item {
  cursor: pointer;
  margin: 0 10px;
}

:root {
  --color-primary: #1f83a5;
  --color-secondary: #007697;
  --color-success: #7acd56;
  --color-danger: #f44336;
  --color-warning: #ffc107;
  --color-info: #17a2b8;
  --bg-body: #dbdcdd;
  --bg-page: #ebedef;
  --bg-card: #dddddd;
  --bg-sidebar: #314a65;
  --bg-sidebar-head: #273b55;
  --bg-navbar: #d6ebff;
  --text-sidebar: #ffffff;
  --text-sidebar-head: #ffffff;
  --width-sidebar: 220px;
  --width-sidebar-collapsed: 60px;
  --height-navbar: 75px;
  --spacing-base: 10px;
  --spacing-content: 10px;
}

.container-main {
  color: rgb(74.6666666667, 84, 93.3333333333);
  background-color: #ebedef;
  padding: 10px;
  z-index: 0;
  transition: padding-left 0.3s ease;
  overflow-y: auto;
  overflow-x: hidden;
}
.container-main__header,
.container-main .container-header {
  color: white;
  background-color: #1f83a5;
  width: 100%;
  padding: 10px;
}
.container-main__breadcrumb,
.container-main .breadcrumb-wrapper {
  padding: 5px 20px;
  margin: 0;
  background-color: #ffffff;
}
.container-main__breadcrumb .breadcrumb,
.container-main .breadcrumb-wrapper .breadcrumb {
  margin: 0;
  padding: 0 !important;
}
.container-main__footer,
.container-main .container-footer {
  color: rgb(74.6666666667, 84, 93.3333333333);
  background-color: #1f83a5;
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 10px;
}
.container-main .row-info {
  margin-bottom: 10px;
}
.container-main .row-info .col-info-title {
  text-align: right;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-content: center;
}
.container-main .row-info .col-info-value {
  border: solid 1px #6c757d;
  border-radius: 4px;
  color: #6c757d;
  padding: 3px 10px;
}

.footer {
  width: 100%;
  background-color: #ffffff;
  color: #343a40;
  padding: 10px;
  transition: padding-left 0.3s ease;
  z-index: 1000;
  height: 59px;
}

.rightSection {
  background-color: #ebedef;
  padding: 10px;
  width: 270px;
}

.progressLoading {
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  position: relative;
  padding-left: 220px;
  box-shadow: inset 0px 1px 3px 0px rgba(110, 115, 120, 0.5);
  overflow: hidden;
}
.progressLoading__bar,
.progressLoading .progressLoadingBar {
  height: 100%;
  background-color: #1f83a5;
  position: absolute;
  top: 0;
  left: 0;
  animation: growWidth 0.3s ease-in-out;
}

:root {
  --color-primary: #1f83a5;
  --color-secondary: #007697;
  --color-success: #7acd56;
  --color-danger: #f44336;
  --color-warning: #ffc107;
  --color-info: #17a2b8;
  --bg-body: #dbdcdd;
  --bg-page: #ebedef;
  --bg-card: #dddddd;
  --bg-sidebar: #314a65;
  --bg-sidebar-head: #273b55;
  --bg-navbar: #d6ebff;
  --text-sidebar: #ffffff;
  --text-sidebar-head: #ffffff;
  --width-sidebar: 220px;
  --width-sidebar-collapsed: 60px;
  --height-navbar: 75px;
  --spacing-base: 10px;
  --spacing-content: 10px;
}

.btn-help, .ui-button-help {
  height: 16px;
  aspect-ratio: 1;
  padding: 0;
  margin: 3px 6px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
}
.btn-help--hoverable, .ui-button-help.ui-button-help-hover {
  color: #1f83a5;
  background-color: #ffffff;
  opacity: 0.3;
}
.btn-help--hoverable:hover, .ui-button-help.ui-button-help-hover:hover {
  opacity: 1;
}

.btn-download, .ui-download-button {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: none;
  color: #0f1923;
  cursor: pointer;
  position: relative;
  padding: 8px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.15s ease;
}
.btn-download::before, .ui-download-button::before, .btn-download::after, .ui-download-button::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  height: calc(50% - 5px);
  border: 1px solid #7D8082;
  transition: all 0.15s ease;
}
.btn-download::before, .ui-download-button::before {
  top: 0;
  border-bottom-width: 0;
}
.btn-download::after, .ui-download-button::after {
  bottom: 0;
  border-top-width: 0;
}
.btn-download:active, .ui-download-button:active, .btn-download:focus, .ui-download-button:focus {
  outline: none;
}
.btn-download:active::before, .ui-download-button:active::before, .btn-download:active::after, .ui-download-button:active::after {
  right: 3px;
  left: 3px;
}
.btn-download:active::before, .ui-download-button:active::before {
  top: 3px;
}
.btn-download:active::after, .ui-download-button:active::after {
  bottom: 3px;
}
.btn-download:hover, .ui-download-button:hover {
  color: #0f1923;
}
.btn-download__lg, .ui-download-button_lg {
  position: relative;
  display: block;
  padding: 10px 20px;
  color: #ffffff;
  background-color: #0f1923;
  overflow: hidden;
  box-shadow: inset 0px 0px 0px 1px transparent;
}
.btn-download__lg::before, .ui-download-button_lg::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 2px;
  background-color: #0f1923;
}
.btn-download__lg::after, .ui-download-button_lg::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 4px;
  height: 4px;
  background-color: #0f1923;
  transition: all 0.2s ease;
}
.btn-download__slider, .ui-download-button_sl {
  display: block;
  position: absolute;
  top: 0;
  bottom: -1px;
  left: -8px;
  width: 0;
  background-color: #ff4655;
  transform: skew(-15deg);
  transition: all 0.2s ease;
}
.btn-download__text, .ui-download-button_text {
  position: relative;
}
.btn-download:hover .btn-download__slider, .btn-download:hover .ui-download-button_sl, .ui-download-button:hover .btn-download__slider, .ui-download-button:hover .ui-download-button_sl {
  width: calc(100% + 15px);
}
.btn-download:hover .btn-download__lg::after, .btn-download:hover .ui-download-button_lg::after, .ui-download-button:hover .btn-download__lg::after, .ui-download-button:hover .ui-download-button_lg::after {
  background-color: #ffffff;
}

.btn-action, .buttonAction {
  margin: 4px 2px;
}

.btn-light {
  border-color: #007697;
}
.btn-light.active {
  background-color: #007697;
  color: #ffffff;
}

.btn-float-fix-container, .button-float-fix-container {
  position: fixed;
  z-index: 99;
}

.btn-float-fix, .button-float-fix {
  background: rgba(52, 58, 64, 0.7);
  font-weight: bolder;
  font-size: larger;
  color: #ffffff;
}

:root {
  --color-primary: #1f83a5;
  --color-secondary: #007697;
  --color-success: #7acd56;
  --color-danger: #f44336;
  --color-warning: #ffc107;
  --color-info: #17a2b8;
  --bg-body: #dbdcdd;
  --bg-page: #ebedef;
  --bg-card: #dddddd;
  --bg-sidebar: #314a65;
  --bg-sidebar-head: #273b55;
  --bg-navbar: #d6ebff;
  --text-sidebar: #ffffff;
  --text-sidebar-head: #ffffff;
  --width-sidebar: 220px;
  --width-sidebar-collapsed: 60px;
  --height-navbar: 75px;
  --spacing-base: 10px;
  --spacing-content: 10px;
}

.card .card-header .card-title {
  color: #222222;
  font-size: 1.1em;
  font-weight: bold;
  margin: 0;
}

.card-note {
  background-color: #ffffff;
  color: #222222;
  font-size: 0.8em;
  border-width: 2px;
  border-style: solid;
  border-color: rgb(229.5, 229.5, 229.5);
  padding: 10px;
  margin: 10px;
  border-radius: 6px;
  box-shadow: 3px 3px 4px 0 rgba(0, 0, 0, 0.2);
}
.card-note ol {
  margin: 0;
}
.card-note--warning, .card-note.card-note-warning {
  background-color: #ffffb3;
  color: olive;
  border-color: #ffff80;
}
.card-note--info, .card-note.card-note-info {
  background-color: #b3d9ff;
  color: #004080;
  border-color: rgb(128, 191.5, 255);
}
.card-note--success, .card-note.card-note-success {
  background-color: #b3ffb3;
  color: green;
  border-color: #80ff80;
}
.card-note--danger, .card-note.card-note-danger {
  background-color: #ffb3b3;
  color: maroon;
  border-color: #ff8080;
}
.card-note--primary, .card-note.card-note-primary {
  background-color: #b3d9ff;
  color: #004080;
  border-color: rgb(128, 191.5, 255);
}
.card-note--default, .card-note.card-note-default {
  background-color: #ffffff;
  color: #222222;
  border-color: rgb(229.5, 229.5, 229.5);
}

.grid-images-viewer {
  display: flex;
}
.grid-images-viewer__title,
.grid-images-viewer .grid-image-view-title {
  display: flex;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(81, 147, 139, 0.6);
  border: solid 2px #ffffff;
  font-weight: bolder;
}
.grid-images-viewer__item,
.grid-images-viewer .grid-image-view-item {
  display: flex;
  background: linear-gradient(149deg, rgb(42, 123, 155) 0%, rgb(75, 75, 125) 50%, rgb(65, 63, 102) 100%);
}
.grid-images-viewer__item--error, .grid-images-viewer__item.grid-image-view-error,
.grid-images-viewer .grid-image-view-item--error,
.grid-images-viewer .grid-image-view-item.grid-image-view-error {
  background: linear-gradient(149deg, rgb(240, 36, 36) 0%, rgb(255, 158, 89) 50%, rgb(138, 8, 8) 100%);
}
.grid-images-viewer__thumbnail,
.grid-images-viewer .item-thumbnail-view {
  padding: 5px;
}
.grid-images-viewer__thumbnail img,
.grid-images-viewer .item-thumbnail-view img {
  max-width: 100%;
  filter: drop-shadow(2px 4px 6px black);
  transition: all 0.3s ease;
}
.grid-images-viewer__thumbnail img:hover,
.grid-images-viewer .item-thumbnail-view img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.8));
}

:root {
  --color-primary: #1f83a5;
  --color-secondary: #007697;
  --color-success: #7acd56;
  --color-danger: #f44336;
  --color-warning: #ffc107;
  --color-info: #17a2b8;
  --bg-body: #dbdcdd;
  --bg-page: #ebedef;
  --bg-card: #dddddd;
  --bg-sidebar: #314a65;
  --bg-sidebar-head: #273b55;
  --bg-navbar: #d6ebff;
  --text-sidebar: #ffffff;
  --text-sidebar-head: #ffffff;
  --width-sidebar: 220px;
  --width-sidebar-collapsed: 60px;
  --height-navbar: 75px;
  --spacing-base: 10px;
  --spacing-content: 10px;
}

.modal-shadow {
  box-shadow: 1px 1px 8px 0 rgba(0, 0, 255, 0.33);
}

.btn-close-modal,
button.closeModal {
  background: transparent;
  border: none;
  color: #000000;
  font-size: 1.5rem;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.sa2-container-html {
  max-height: 70vh;
  padding: 10px;
  margin-top: 20px;
}

.context-menu {
  background-color: rgba(10, 10, 10, 0.4);
  color: #ffffff;
  border: solid 1px rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  padding: 5px 0;
  min-width: 150px;
  display: none;
  position: absolute;
  z-index: 1000;
}
.context-menu__title,
.context-menu .context-menu-title {
  font-size: 0.8em;
  font-weight: bold;
  padding: 5px 10px;
  border-bottom: solid 1px rgba(255, 255, 255, 0.5);
}
.context-menu__item,
.context-menu .context-menu-item {
  padding: 5px 10px;
  cursor: pointer;
  font-size: 0.7em;
}
.context-menu__item:hover,
.context-menu .context-menu-item:hover {
  background-color: rgba(76, 222, 255, 0.32);
}

:root {
  --color-primary: #1f83a5;
  --color-secondary: #007697;
  --color-success: #7acd56;
  --color-danger: #f44336;
  --color-warning: #ffc107;
  --color-info: #17a2b8;
  --bg-body: #dbdcdd;
  --bg-page: #ebedef;
  --bg-card: #dddddd;
  --bg-sidebar: #314a65;
  --bg-sidebar-head: #273b55;
  --bg-navbar: #d6ebff;
  --text-sidebar: #ffffff;
  --text-sidebar-head: #ffffff;
  --width-sidebar: 220px;
  --width-sidebar-collapsed: 60px;
  --height-navbar: 75px;
  --spacing-base: 10px;
  --spacing-content: 10px;
}

.badge--success, .badge.badge-success {
  border: solid 1px #7acd56;
  background-color: #ddf3d3;
  color: #3bcb2b;
}
.badge--danger, .badge.badge-danger {
  border: solid 1px #f44336;
  background-color: #f8d7da;
  color: #f44336;
}
.badge--warning {
  border: solid 1px #ffc107;
  background-color: #fff3cd;
  color: #a07800;
}
.badge--info {
  border: solid 1px #17a2b8;
  background-color: #d1ecf1;
  color: rgb(11.6666666667, 82.1739130435, 93.3333333333);
}

.bi-state-online,
.biStateOnline {
  color: #7acd56;
}

.bi-state-offline,
.biStateOffline {
  color: #f44336;
}

:root {
  --color-primary: #1f83a5;
  --color-secondary: #007697;
  --color-success: #7acd56;
  --color-danger: #f44336;
  --color-warning: #ffc107;
  --color-info: #17a2b8;
  --bg-body: #dbdcdd;
  --bg-page: #ebedef;
  --bg-card: #dddddd;
  --bg-sidebar: #314a65;
  --bg-sidebar-head: #273b55;
  --bg-navbar: #d6ebff;
  --text-sidebar: #ffffff;
  --text-sidebar-head: #ffffff;
  --width-sidebar: 220px;
  --width-sidebar-collapsed: 60px;
  --height-navbar: 75px;
  --spacing-base: 10px;
  --spacing-content: 10px;
}

.form-label-right,
.form-input-label {
  color: #222222;
  font-size: 0.8em;
  margin-bottom: 5px;
  display: block;
  text-align: right;
  line-height: 35px;
}

.form-row-info, .row-info {
  margin-bottom: 10px;
}
.form-row-info__label,
.form-row-info .col-info-title,
.row-info .col-info-title {
  text-align: right;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-content: center;
}
.form-row-info__value,
.form-row-info .col-info-value,
.row-info .col-info-value {
  border: solid 1px #6c757d;
  border-radius: 4px;
  color: #6c757d;
  padding: 3px 10px;
}

.loader-wrapper {
  padding: 20px;
  text-align: center;
}

.loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  border: 3px solid;
  border-color: #fff #fff transparent transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.loader::after, .loader::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 3px solid;
  border-color: transparent transparent #1f83a5 #1f83a5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-sizing: border-box;
  animation: rotationBack 0.5s linear infinite;
  transform-origin: center center;
}
.loader::before {
  width: 32px;
  height: 32px;
  border-color: #314a65 #314a65 transparent transparent;
  animation: rotation 1.5s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotationBack {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.loadingText {
  display: flex;
  justify-content: start;
  align-items: center;
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.loading-overlay.hidden {
  display: none;
}

/* Spinner đơn giản */
.spinner {
  width: 60px;
  height: 60px;
  border: 8px solid #f3f3f3;
  border-top: 8px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.ERROR {
  background-color: red;
  color: white;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  width: 100%;
  padding: 10px;
  border-radius: 5px;
}
.ERROR.ERROR-SMALL {
  font-size: 0.8rem;
  padding: 2px;
}

.TODO {
  background: red;
  color: white;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  width: 100%;
  padding: 10px;
  border-radius: 5px;
}
.TODO.TODO-SMALL {
  font-size: 0.8rem;
  padding: 2px;
}

.news-marquee {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--color-secondary);
  height: 40px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.news-marquee__label {
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: bold;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: 0.9rem;
  z-index: 10;
  position: relative;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
  padding-right: 30px;
  margin-right: -20px;
}
.news-marquee__content {
  overflow: hidden;
  position: relative;
  height: 100%;
  display: block;
  background-color: var(--bg-header);
  line-height: 40px;
  min-width: 0;
}
.news-marquee__scroll {
  display: inline-block;
  white-space: nowrap;
  padding-left: 0;
  animation: marquee-scroll 60s linear infinite;
  height: 100%;
  vertical-align: middle;
}
.news-marquee__scroll:hover {
  animation-play-state: paused;
}
.news-marquee__item {
  margin-right: 50px;
  color: var(--color-dark);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  vertical-align: middle;
}
.news-marquee__item i {
  margin-right: 8px;
  color: var(--color-info);
}
.news-marquee__item a {
  color: inherit;
  text-decoration: none;
}
.news-marquee__item a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

@keyframes marquee-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}
:root {
  --color-primary: #1f83a5;
  --color-secondary: #007697;
  --color-success: #7acd56;
  --color-danger: #f44336;
  --color-warning: #ffc107;
  --color-info: #17a2b8;
  --bg-body: #dbdcdd;
  --bg-page: #ebedef;
  --bg-card: #dddddd;
  --bg-sidebar: #314a65;
  --bg-sidebar-head: #273b55;
  --bg-navbar: #d6ebff;
  --text-sidebar: #ffffff;
  --text-sidebar-head: #ffffff;
  --width-sidebar: 220px;
  --width-sidebar-collapsed: 60px;
  --height-navbar: 75px;
  --spacing-base: 10px;
  --spacing-content: 10px;
}

.equipment-window {
  background-image: url("/images/EquipmentWindow.png");
  width: 291px;
  height: 254px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.equipment-window__slot,
.equipment-window .eq-slot {
  position: absolute;
  background-color: rgba(17, 34, 51, 0.6);
}
.equipment-window__slot--weapon-right,
.equipment-window .eq-type-weapon-right {
  width: 66px;
  height: 98px;
  top: 76px;
  left: 16px;
}
.equipment-window__slot--weapon-left,
.equipment-window .eq-type-weapon-left {
  width: 66px;
  height: 98px;
  top: 76px;
  left: 209px;
}
.equipment-window__slot--armor,
.equipment-window .eq-type-armor {
  width: 66px;
  height: 98px;
  top: 76px;
  left: 112px;
}
.equipment-window__slot--head, .equipment-window__slot--shoes, .equipment-window__slot--gloves, .equipment-window__slot--pant, .equipment-window__slot--pet,
.equipment-window .eq-type-head,
.equipment-window .eq-type-shoes,
.equipment-window .eq-type-gloves,
.equipment-window .eq-type-pant,
.equipment-window .eq-type-pet {
  width: 66px;
  height: 66px;
}
.equipment-window__slot--head,
.equipment-window .eq-type-head {
  top: 7px;
  left: 112px;
}
.equipment-window__slot--shoes,
.equipment-window .eq-type-shoes {
  top: 177px;
  left: 209px;
}
.equipment-window__slot--gloves,
.equipment-window .eq-type-gloves {
  top: 177px;
  left: 16px;
}
.equipment-window__slot--pant,
.equipment-window .eq-type-pant {
  top: 177px;
  left: 112px;
}
.equipment-window__slot--pet,
.equipment-window .eq-type-pet {
  top: 7px;
  left: 16px;
}
.equipment-window__slot--wings,
.equipment-window .eq-type-wings {
  width: 94px;
  height: 66px;
  top: 7px;
  left: 182px;
}
.equipment-window__slot--ring, .equipment-window__slot--necklace,
.equipment-window .eq-type-ring-1,
.equipment-window .eq-type-ring-2,
.equipment-window .eq-type-necklace {
  width: 30px;
  height: 30px;
}
.equipment-window__slot--ring-1,
.equipment-window .eq-type-ring-1 {
  top: 175px;
  left: 82px;
}
.equipment-window__slot--ring-2,
.equipment-window .eq-type-ring-2 {
  top: 175px;
  left: 178px;
}
.equipment-window__slot--necklace,
.equipment-window .eq-type-necklace {
  top: 76px;
  left: 82px;
}

.character-icon-button {
  width: 45px;
}

:root {
  --color-primary: #1f83a5;
  --color-secondary: #007697;
  --color-success: #7acd56;
  --color-danger: #f44336;
  --color-warning: #ffc107;
  --color-info: #17a2b8;
  --bg-body: #dbdcdd;
  --bg-page: #ebedef;
  --bg-card: #dddddd;
  --bg-sidebar: #314a65;
  --bg-sidebar-head: #273b55;
  --bg-navbar: #d6ebff;
  --text-sidebar: #ffffff;
  --text-sidebar-head: #ffffff;
  --width-sidebar: 220px;
  --width-sidebar-collapsed: 60px;
  --height-navbar: 75px;
  --spacing-base: 10px;
  --spacing-content: 10px;
}

.inventory-window {
  display: grid;
  gap: 1px;
  background: #444;
  width: max-content;
  padding: 3px;
}
.inventory-window--inventory, .inventory-window.type-inventory {
  grid-template: repeat(8, 38px)/repeat(8, 38px);
}
.inventory-window--inventory-ext, .inventory-window.type-inventoryExt {
  grid-template: repeat(4, 38px)/repeat(8, 38px);
}
.inventory-window--storage, .inventory-window.type-storage {
  grid-template: repeat(15, 38px)/repeat(8, 38px);
}
.inventory-window#boxpreview {
  grid-template: repeat(5, 38px)/repeat(4, 38px);
}
.inventory-window__cell,
.inventory-window .inventory-cell {
  width: 38px;
  height: 38px;
  background-color: #222;
  border: 1px solid #333;
}
.inventory-window__item,
.inventory-window .inventory-item {
  border: 1px solid gold;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}
.inventory-window__item img,
.inventory-window .inventory-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

:root {
  --color-primary: #1f83a5;
  --color-secondary: #007697;
  --color-success: #7acd56;
  --color-danger: #f44336;
  --color-warning: #ffc107;
  --color-info: #17a2b8;
  --bg-body: #dbdcdd;
  --bg-page: #ebedef;
  --bg-card: #dddddd;
  --bg-sidebar: #314a65;
  --bg-sidebar-head: #273b55;
  --bg-navbar: #d6ebff;
  --text-sidebar: #ffffff;
  --text-sidebar-head: #ffffff;
  --width-sidebar: 220px;
  --width-sidebar-collapsed: 60px;
  --height-navbar: 75px;
  --spacing-base: 10px;
  --spacing-content: 10px;
}

.item-info,
.iteminfo-container {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
  max-width: 310px;
}
.item-info__title,
.item-info .iteminfo-title,
.iteminfo-container__title,
.iteminfo-container .iteminfo-title {
  font-weight: bold;
}
.item-info__subtitle,
.item-info .iteminfo-subtitle,
.iteminfo-container__subtitle,
.iteminfo-container .iteminfo-subtitle {
  font-size: 0.8rem;
  font-style: italic;
}
.item-info__divider,
.item-info .iteminfo-divider,
.iteminfo-container__divider,
.iteminfo-container .iteminfo-divider {
  height: 2px;
  background-color: rgba(140, 140, 140, 0.25);
  margin: 3px 0;
}
.item-info__text--green,
.item-info .iteminfo-green,
.iteminfo-container__text--green,
.iteminfo-container .iteminfo-green {
  color: #04ec00;
}
.item-info__text--yellow,
.item-info .iteminfo-yellow,
.iteminfo-container__text--yellow,
.iteminfo-container .iteminfo-yellow {
  color: #f4d907;
}
.item-info__text--blue,
.item-info .iteminfo-blue,
.iteminfo-container__text--blue,
.iteminfo-container .iteminfo-blue {
  color: #1c8de3;
}
.item-info__text--gray,
.item-info .iteminfo-gray,
.iteminfo-container__text--gray,
.iteminfo-container .iteminfo-gray {
  color: rgba(140, 140, 140, 0.25);
}
.item-info__text--white,
.item-info .iteminfo-white,
.iteminfo-container__text--white,
.iteminfo-container .iteminfo-white {
  color: #ffffff;
}

.table-balance {
  font-size: 12pt;
}
.table-balance-container {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.table-balance-group {
  border-bottom: 1px dashed rgba(140, 140, 140, 0.25);
  padding: 5px;
  display: flex;
  gap: 5px;
  align-items: center;
}
.table-balance-col {
  display: inline-block;
  font-size: 12pt;
}
.table-balance-col-label {
  font-weight: bold;
  flex-grow: 1;
}
.table-balance-col-value {
  font-weight: normal;
  width: 100px;
  text-align: right;
}
.table-balance-col-input {
  width: 100px;
}
.table-balance-col-input input {
  text-align: right;
}

:root {
  --color-primary: #1f83a5;
  --color-secondary: #007697;
  --color-success: #7acd56;
  --color-danger: #f44336;
  --color-warning: #ffc107;
  --color-info: #17a2b8;
  --bg-body: #dbdcdd;
  --bg-page: #ebedef;
  --bg-card: #dddddd;
  --bg-sidebar: #314a65;
  --bg-sidebar-head: #273b55;
  --bg-navbar: #d6ebff;
  --text-sidebar: #ffffff;
  --text-sidebar-head: #ffffff;
  --width-sidebar: 220px;
  --width-sidebar-collapsed: 60px;
  --height-navbar: 75px;
  --spacing-base: 10px;
  --spacing-content: 10px;
}

.item-maker__label-wrapper,
.item-maker .checkLabelWrapper,
.item-maker-container__label-wrapper,
.item-maker-container .checkLabelWrapper {
  flex: 1 0 0;
  min-width: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.item-maker__label-wrapper:hover,
.item-maker .checkLabelWrapper:hover,
.item-maker-container__label-wrapper:hover,
.item-maker-container .checkLabelWrapper:hover {
  text-overflow: unset;
}
.item-maker__label-wrapper:hover .checkLabel,
.item-maker__label-wrapper:hover .item-maker__label,
.item-maker .checkLabelWrapper:hover .checkLabel,
.item-maker .checkLabelWrapper:hover .item-maker__label,
.item-maker-container__label-wrapper:hover .checkLabel,
.item-maker-container__label-wrapper:hover .item-maker__label,
.item-maker-container .checkLabelWrapper:hover .checkLabel,
.item-maker-container .checkLabelWrapper:hover .item-maker__label {
  animation: marquee 5s linear infinite;
  text-overflow: unset;
  overflow: visible;
}
.item-maker__label,
.item-maker .checkLabel,
.item-maker-container__label,
.item-maker-container .checkLabel {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  display: block;
  text-align: left;
}
.item-maker__input > div,
.item-maker .small-element-input > div,
.item-maker-container__input > div,
.item-maker-container .small-element-input > div {
  border: solid 1px #ccc;
  border-radius: 2px;
}
.item-maker__input select,
.item-maker .small-element-input select,
.item-maker-container__input select,
.item-maker-container .small-element-input select {
  border-radius: 2px;
  border: 1px solid #ccc;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
:root {
  --color-primary: #1f83a5;
  --color-secondary: #007697;
  --color-success: #7acd56;
  --color-danger: #f44336;
  --color-warning: #ffc107;
  --color-info: #17a2b8;
  --bg-body: #dbdcdd;
  --bg-page: #ebedef;
  --bg-card: #dddddd;
  --bg-sidebar: #314a65;
  --bg-sidebar-head: #273b55;
  --bg-navbar: #d6ebff;
  --text-sidebar: #ffffff;
  --text-sidebar-head: #ffffff;
  --width-sidebar: 220px;
  --width-sidebar-collapsed: 60px;
  --height-navbar: 75px;
  --spacing-base: 10px;
  --spacing-content: 10px;
}

.text-small {
  font-size: 0.9rem;
}

.text-tiny {
  font-size: 0.8rem;
}

.fs-sub,
.fs-subtle {
  font-size: 0.8em;
}

.text-bold {
  font-weight: bold;
}

.text-bolder {
  font-weight: bolder;
}

.title {
  display: block;
  color: #baffcc;
  font-size: 1.3rem;
}
.title.title-sub {
  color: #9f9f9f;
  font-size: 0.8em;
}

:root {
  --color-primary: #1f83a5;
  --color-secondary: #007697;
  --color-success: #7acd56;
  --color-danger: #f44336;
  --color-warning: #ffc107;
  --color-info: #17a2b8;
  --bg-body: #dbdcdd;
  --bg-page: #ebedef;
  --bg-card: #dddddd;
  --bg-sidebar: #314a65;
  --bg-sidebar-head: #273b55;
  --bg-navbar: #d6ebff;
  --text-sidebar: #ffffff;
  --text-sidebar-head: #ffffff;
  --width-sidebar: 220px;
  --width-sidebar-collapsed: 60px;
  --height-navbar: 75px;
  --spacing-base: 10px;
  --spacing-content: 10px;
}

.w-20 {
  width: 20%;
}

.w-30 {
  width: 30%;
}

.w-40 {
  width: 40%;
}

.w-80 {
  width: 80%;
}

.min-w-150 {
  min-width: 150px;
}

.min-w-230 {
  min-width: 230px;
}

.d-gap-2 {
  gap: 2px;
}

.d-gap-3 {
  gap: 3px;
}

.d-gap-5 {
  gap: 5px;
}

.d-gap-10 {
  gap: 10px;
}

.flex-gap-10 {
  column-gap: 10px;
  row-gap: 10px;
}

:root {
  --color-primary: #1f83a5;
  --color-secondary: #007697;
  --color-success: #7acd56;
  --color-danger: #f44336;
  --color-warning: #ffc107;
  --color-info: #17a2b8;
  --bg-body: #dbdcdd;
  --bg-page: #ebedef;
  --bg-card: #dddddd;
  --bg-sidebar: #314a65;
  --bg-sidebar-head: #273b55;
  --bg-navbar: #d6ebff;
  --text-sidebar: #ffffff;
  --text-sidebar-head: #ffffff;
  --width-sidebar: 220px;
  --width-sidebar-collapsed: 60px;
  --height-navbar: 75px;
  --spacing-base: 10px;
  --spacing-content: 10px;
}

.d-flex-row {
  display: flex;
  flex-direction: row;
}

.d-flex-column {
  display: flex;
  flex-direction: column;
}

.flex-fixed {
  flex: 0 0 auto;
}

.flex-expand {
  flex: 1 1 auto;
}

.flex-fill-custom, .flex-fill {
  flex: 1 1 0 !important;
  min-width: 0;
}

.shadow-down {
  position: relative;
}
.shadow-down::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: inherit;
}

.shadow-up {
  position: relative;
}
.shadow-up::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  box-shadow: 0px -2px 5px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.rank-1 {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}
.rank-1 td {
  background: unset;
  padding: 22px 10px;
  font-size: 1.2em;
  color: white;
  text-shadow: 2px 2px 4px #6c757d;
}
.rank-2 {
  background: linear-gradient(135deg, #86c3cb 0%, #ffffff 100%);
}
.rank-2 td {
  background: unset;
  padding: 22px 10px;
  font-size: 1.2em;
  color: #171a95;
  text-shadow: 2px 2px 4px #6c757d;
}
.rank-3 {
  background: linear-gradient(135deg, #CD7F32 0%, #D98880 100%);
}
.rank-3 td {
  background: unset;
  padding: 22px 10px;
  font-size: 1.2em;
  color: #3f0606;
  text-shadow: 2px 2px 4px #6c757d;
}

.cursor-pointer {
  cursor: pointer;
}

.align-middle {
  vertical-align: middle;
}

.img-icon-md {
  width: 40px;
  height: 40px;
  vertical-align: middle;
  margin-right: 5px;
}

.tippy-box[data-theme~=button-help] {
  background-color: white;
  color: #141414;
  border-radius: 8px;
  border-color: #1f83a5;
  border-width: 3px;
  font-weight: normal;
  text-align: justify;
}
.tippy-box[data-theme~=button-help] > .tippy-arrow::before {
  border-color: #1f83a5;
}
.tippy-box[data-theme~=button-help] .tippy-content {
  border-radius: 8px;
  border-color: #1f83a5;
  box-shadow: 2px 2px 7px 2px rgba(12, 121, 223, 0.3);
}
.tippy-box[data-theme~=button-help] .tippy-content ul {
  margin: 10px;
}

/*# sourceMappingURL=style.css.map */
