@charset "UTF-8";
/* ©UixsoftwareUI*/
:root {
  --ui-color-info: #50c2f5;
  --ui-color-success: #4fbf75;
  --ui-color-warning: #fccc2f;
  --ui-color-danger: #f8472c;
  --ui-font-family: system-ui;
  --ui-font-size: 0.9rem;
  --ui-font-size-small: 0.8rem;
  --ui-font-weight: 500;
  --ui-font-weight-strong: 700;
  --ui-border-width: 0.5px;
  --ui-border-radius: 4px;
  --ui-sidebar-width: 250px;
  --ui-sidebar-width-collapsed: 60px;
  --ui-color-primary: #635bff;
  --ui-color-accent: #ff5b89;
  --ui-color-primary-opacity: #8370ff2e;
  --ui-color-bg: #fff;
  --ui-color-card-bg: #fff;
  --ui-color-bg-accent: #fafafa;
  --ui-color-bg-accent-strong: #f2f2f2;
  --ui-color-text-heading: #313131;
  --ui-color-text: #737373;
  --ui-color-border: #e1e1e1;
}
[uixsoftware="midnight"] {
  color-scheme: dark;
  --ui-color-primary: #8470ff;
  --ui-color-bg: #0a2540;
  --ui-color-card-bg: #0d2e4f;
  --ui-color-bg-accent: #0d2e4f;
  --ui-color-bg-accent-strong: #0f395e;
  --ui-color-text-heading: #c9ced8;
  --ui-color-text: #adbdcc;
  --ui-color-border: #0f395e;
}
[uixsoftware="dark"] {
  color-scheme: dark;
  --ui-color-primary: #6665ec;
  --ui-color-bg: #000000;
  --ui-color-card-bg: #000000;
  --ui-color-bg-accent: #0a0a0a;
  --ui-color-bg-accent-strong: #171717;
  --ui-color-text-heading: #d9d9d9;
  --ui-color-text: #a1a1a1;
  --ui-color-border: #262626;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: var(--ui-color-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--ui-color-primary);
  border-radius: var(--ui-border-radius);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--ui-color-accent);
}

body {
  margin: 0;
  font-size: var(--ui-font-size);
  color: var(--ui-color-text);
  font-family: var(--ui-font-family);
  background-color: var(--ui-color-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.container {
  width: 100%;
  max-width: 1000px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.logo {
  margin-top: -5px;
  font-size: 20px;
  color: var(--ui-color-primary);
  font-weight: var(--ui-font-weight);
}
@media (max-width: 800px) {
  .logo {
    font-size: 24px;
  }
}

hr {
  border: 0.5px solid var(--ui-color-border);
}

/* TEXT */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 5px 0px;
  font-weight: var(--ui-font-weight);
  color: var(--ui-color-text-heading);
}

.display-6 {
  font-size: 60px;
  letter-spacing: -2px;
  line-height: 1.1;
}

@media (max-width: 800px) {
  .display-6 {
    font-size: 52px;
    line-height: 58px;
  }
}

h1 {
  font-size: 52px;
  letter-spacing: -1.8px;
  line-height: 1.1;
}

@media (max-width: 800px) {
  h1 {
    font-size: 42px;
    line-height: 48px;
  }
}

h2 {
  font-size: 36px;
  letter-spacing: -1px;
  line-height: 1.26316;
}

@media (max-width: 800px) {
  h2 {
    font-size: 32px;
    line-height: 1.22316;
  }
}

h3 {
  font-size: 26px;
  line-height: 1.26316;
}

h4 {
  font-size: 22px;
  line-height: 30px;
}

@media (max-width: 800px) {
  h4 {
    font-size: 24px;
    line-height: 1.55556;
  }
}

h5 {
  font-size: 18px;
  letter-spacing: -0.3px;
  line-height: 1.4;
}

@media (max-width: 800px) {
  h5 {
    font-size: 21px;
    line-height: 1.55556;
  }
}

h6 {
  font-size: 15px;
  line-height: 1.55556;
}

@media (max-width: 800px) {
  h6 {
    font-size: 17px;
    line-height: 1.55556;
  }
}

p {
  margin: 10px 0px;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: var(--ui-color-text);
}

.lead {
  font-size: 1.1rem;
}

@media (max-width: 800px) {
  .lead {
    font-size: 1.2rem;
  }
}

.small {
  font-size: var(--ui-font-size-small) !important;
}

strong,
.strong {
  font-weight: var(--ui-font-weight);
}

.superstrong {
  font-weight: var(--ui-font-weight-strong);
}

/* ENDTEXT */
/* COLORS */

.accent {
  background-color: var(--ui-color-bg-accent) !important;
}
.accent-strong {
  background-color: var(--ui-color-bg-accent-strong) !important;
}
.text-white {
  color: white !important;
}
.text-heading {
  color: var(--ui-color-text-heading) !important;
}
.text-primary {
  color: var(--ui-color-primary) !important;
}
.text-accent {
  color: var(--ui-color-accent) !important;
}
.text-success {
  color: var(--ui-color-success) !important;
}
.text-info {
  color: var(--ui-color-info) !important;
}
.text-danger {
  color: var(--ui-color-danger) !important;
}
.text-warning {
  color: var(--ui-color-warning) !important;
}
.text-center {
  text-align: center;
}
.bg-background {
  background-color: var(--ui-color-bg) !important;
}
.bg-primary {
  background-color: var(--ui-color-primary) !important;
}
.bg-success {
  background-color: var(--ui-color-success) !important;
}
.bg-info {
  background-color: var(--ui-color-info) !important;
}
.bg-danger {
  background-color: var(--ui-color-danger) !important;
}
.bg-warning {
  background-color: var(--ui-color-warning) !important;
}

/* ENDCOLORS */
/* BUTTONS */

.link {
  padding: 0px;
  font-size: var(--ui-font-size);
  font-family: var(--ui-font-family);
  font-weight: var(--ui-font-weight);
  color: var(--ui-color-text-heading);
}

.btn {
  display: flex;
  justify-content: center;
  gap: 3px;
  cursor: pointer;
  padding: 4px 8px;
  text-align: center;
  font-size: var(--ui-font-size);
  font-family: var(--ui-font-family);
  font-weight: var(--ui-font-weight);
  color: var(--ui-color-text-heading);
  background-color: var(--ui-color-bg);
  border-radius: var(--ui-border-radius);
  border: none;
  box-shadow:
    0px 1px 1px #00000030,
    0px 0px 0px var(--ui-border-width) var(--ui-color-border);
}

@media (max-width: 800px) {
  .btn {
    font-size: 18px !important;
  }
}

.btn svg {
  margin-bottom: -2px;
  width: 16px;
}

.icon {
  width: 16px;
}

.btn:hover {
  filter: brightness(96%);
}

.btn-primary {
  color: white;
  background-color: var(--ui-color-primary);
  box-shadow:
    0px 1px 1px #443ebd,
    0px 0px 0px var(--ui-border-width) var(--ui-color-primary);
}

.btn-dark {
  color: var(--ui-color-bg);
  background-color: var(--ui-color-text-heading);
  box-shadow:
    0px 1px 1px var(--ui-color-text),
    0px 0px 0px var(--ui-border-width) var(--ui-color-text-heading);
}

.btn-ghost {
  color: var(--ui-color-text);
  background-color: var(--ui-color-bg-accent-strong);
  box-shadow: none;
}

.btn-lg {
  padding: 8px 12px;
}

.btn-sm {
  padding: 3px 6px;
}

.btn-icon {
  padding: 3px;
}

.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn.dropdown-toggle-split:first-child,
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:nth-child(n + 3),
.btn-group > :not(.btn-check) + .btn,
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* ENDBUTTONS */
/* CHAT */
.chat {
  z-index: 11;
  position: fixed;
  bottom: 50px;
  scale: 0.6;
  right: -340px;
  width: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.2s ease-out;
}

.chat.show {
  scale: 1;
  right: 10px;
}

#sendmessage {
  border: 0 !important;
  aspect-ratio: 1/1;
  display: inline-block;
  width: 28px;
  height: 28px;
  background-color: var(--ui-color-primary-opacity);
  border-radius: 50%;
  background-size: 70% auto;
  rotate: 180deg;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 5v14M6 13l6 6 6-6' stroke='%23635bff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* ENDCHAT */
/* CARDS */

.card {
  border-radius: var(--ui-border-radius);
  border: var(--ui-border-width) solid var(--ui-color-border);
  background-color: var(--ui-color-bg);
}

.card-bg {
  background-color: var(--ui-color-card-bg) !important;
}

.cardcheck {
  position: relative;
  border: 1px solid var(--ui-color-border);
  border-radius: var(--ui-border-radius);
  background-color: var(--ui-color-bg);
  cursor: pointer;
}

.cardcheck p {
  display: ruby;
}

.cardcheck .hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cardcheck:has(.hidden:checked) {
  border-color: var(--ui-color-primary);
  color: var(--ui-color-primary) !important;
}

.cardcheck:hover {
  border-color: var(--ui-color-primary);
  background-color: var(--ui-color-bg-accent);
}

/* ENDCARDS */
/* BORDER & RADIUS */

.rounded {
  border-radius: var(--ui-border-radius) !important;
}

.pill {
  border-radius: 50px !important;
}

.border-none {
  border-width: 0 !important;
}

/* ENDBORDER */
/* ACCORDION */

.accordion-item {
  overflow: hidden;
  margin-bottom: 8px;
  background-color: var(--ui-color-bg);
  border-radius: var(--ui-border-radius);
  border: var(--ui-border-width) solid var(--ui-color-border);
}

.accordion-header {
  padding: 12px;
  font-weight: var(--ui-font-weight);
  color: var(--ui-color-text-heading);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.icon-accordion {
  aspect-ratio: 1/1;
  display: inline-block;
  margin-bottom: -3px;
  margin-right: 4px;
  width: 16px;
  height: 16px;
  background-color: var(--ui-color-primary-opacity);
  border-radius: 50%;
  background-size: 70% auto;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 5v14M6 13l6 6 6-6' stroke='%23635bff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.accordion-item.active .accordion-header .icon-accordion {
  transform: rotate(180deg);
}

.accordion-header:hover {
  color: var(--ui-color-text);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.1s ease-out;
  background-color: var(--ui-color-bg);
}

/* ENDACCORDION */
/* ALERTS */

.alert {
  padding: 4px 8px;
  font-size: var(--ui-font-size-small);
  font-weight: var(--ui-font-weight);
  border-radius: var(--ui-border-radius);
  background-color: var(--ui-color-danger);
  color: white;
}

/* ENDALERTS */
/* BADGE & PROGRESS */

.badge {
  padding: 2px 4px;
  font-size: var(--ui-font-size-small);
  font-weight: var(--ui-font-weight);
  border-radius: var(--ui-border-radius);
  border: var(--ui-border-width) solid var(--ui-color-border);
  background-color: var(--ui-color-bg);
}

.avatar {
  width: 26px;
  height: 26px;
  display: flex;
  justify-content: center;
  font-size: 16px;
  border-radius: 50%;
  font-weight: var(--ui-font-weight);
  align-items: center;
  color: var(--ui-color-primary);
  background-color: var(--ui-color-primary-opacity);
}

.avatar-sm {
  width: 22px;
  height: 22px;
  font-size: 13px;
}

.spinner {
  display: inline-block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  vertical-align: -0.125em;
  border-radius: 50%;
  border: 1.5px solid currentcolor;
  border-right-color: transparent;
  animation: 0.7s linear infinite spinner-border;
}

.spinner-sm {
  width: 18px;
  height: 18px;
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}

.square {
  border-radius: var(--ui-border-radius);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 50px;
  height: 50px;
}

.square img {
  border-radius: var(--ui-border-radius);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.square .remove-btn {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--ui-color-danger);
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 12px;
}

.progress {
  height: 4px;
  background-color: var(--ui-color-bg-accent);
}

.progress div {
  height: 4px;
  transition: width 0.2s;
  background-color: var(--ui-color-primary);
}

/* ENDBADGE */
/* FORMS */

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 15px;
}

label {
  font-size: var(--ui-font-size-small);
  font-weight: var(--ui-font-weight);
}

textarea {
  min-height: 50px;
  max-height: 300px;
  resize: vertical;
}

select:focus-visible {
  outline: none !important;
}

.textareachat {
  appearance: none;
  resize: none !important;
  border: 0 !important;
  background-color: transparent !important;
}

.textareachat:focus-visible {
  outline: none !important;
}

input[type="checkbox"] {
  flex-shrink: 0;
  width: auto;
  margin: 0;
  padding: 7px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-repeat: no-repeat;
  background-color: var(--ui-color-bg-accent-strong);
  background-position: center;
  background-size: contain;
  border: var(--ui-border-width) solid var(--ui-color-border) !important;
}

input[type="color"] {
  aspect-ratio: 1 / 1;
  padding: 0;
  width: 30px;
  height: 30px;
  border-radius: var(--ui-border-radius);
  border: none;
}

input:checked[type="radio"] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
input[type="checkbox"]:indeterminate {
  background-color: var(--ui-color-primary);
  border-color: var(--ui-color-primary);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
input:checked {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
  background-color: var(--ui-color-primary);
  border-color: var(--ui-color-primary);
}

input::placeholder,
textarea::placeholder {
  color: var(--ui-color-text);
  opacity: 0.6;
}

input,
select,
textarea {
  appearance: none;
  display: block;
  width: 100%;
  font-size: var(--ui-font-size);
  padding: 6px 12px;
  font-family: var(--ui-font-family);
  background-clip: padding-box;
  background-color: var(--ui-color-bg);
  color: var(--ui-color-text-heading) !important;
  border: var(--ui-border-width) solid var(--ui-color-border);
  border-radius: var(--ui-border-radius);
  transition: box-shadow 0.15s ease-in-out;
}

.input-group {
  display: flex;
}

.input-group select {
  border-radius: var(--ui-border-radius) 0 0 var(--ui-border-radius);
  border-right: none;
}

.input-group input {
  border-radius: 0 var(--ui-border-radius) var(--ui-border-radius) 0;
  border-left: none;
}

.input-sm {
  padding: 3px 6px;
  font-size: var(--ui-font-size);
}

input:focus {
  outline: 0;
  box-shadow: 0 0 0 0.15rem #9cd6ff;
}

/* ENDFORMS */
/* WYSIWING */

.richtext-wrapper {
  width: 100%;
}

.editor-toolbar {
  background-color: var(--ui-color-bg-accent);
  display: flex;
  padding: 3px;
  flex-wrap: wrap;
  border-radius: var(--ui-border-radius);
}

.editor-toolbar button {
  border-radius: var(--ui-border-radius);
  font-size: 14px;
  border: none;
  cursor: pointer;
  background-color: var(--ui-color-bg-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.editor-toolbar button:hover {
  background: var(--ui-color-bg-accent-strong);
}

.editor-toolbar .divider {
  width: 1px;
  height: 20px;
  background: var(--ui-color-bg-accent-strong);
  margin: 0 4px;
  align-self: center;
}

.editor-content {
  min-height: 76px;
  max-height: 300px;
  padding: 10px;
  border-radius: var(--ui-border-radius);
  overflow-y: auto;
  font-size: 14px;
  line-height: 1.5;
  outline: none;
}

.editor-content:focus {
  outline: 0;
  box-shadow: 0 0 0 0.15rem #9cd6ff;
}

.editor-content:empty::before {
  content: attr(placeholder);
  pointer-events: none;
}

/* ENDWYSIWING */
/* SHADOWS */

.shadow {
  box-shadow:
    0 13px 27px -5px rgba(50, 50, 93, 0.062),
    0 8px 16px -8px rgba(0, 0, 0, 0.3);
}

.shadow-none {
  box-shadow: none;
}

/* ENDSHADOWS */
/* NAVBAR */

#navbar {
  top: 0;
  z-index: 10;
  padding: 10px;
}

#navbar.sticky {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: var(--ui-color-bg) !important;
}

.navbarcontent {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

#navbar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

#navbar ul a {
  padding: 6px;
  font-weight: var(--ui-font-weight);
  color: var(--ui-color-text-heading);
  border-radius: var(--ui-border-radius);
}

#navbar ul a.active {
  color: var(--ui-color-primary);
}

@media (max-width: 767px) {
  #navbar .navbarmenu {
    display: none;
  }
}

#navbar .navbarmenu.show {
  top: 0px;
  left: 0px;
  width: 100%;
  display: flex;
  font-size: 16px;
  position: fixed;
  padding: 12px 12px;
  flex-direction: column;
  padding-top: 25px !important;
  background: var(--ui-color-card-bg);
  border-bottom: var(--ui-border-width) solid var(--ui-color-border);
}

#navbar .navbarmenu.show .dropdown-menu {
  margin-top: 16px;
  position: relative;
  border: 0 !important;
  padding: 0 !important;
  opacity: 1 !important;
  width: 100% !important;
  display: flex !important;
  visibility: visible !important;
}

#navbar .navbarmenu.show .dropdown-menu a {
  font-size: 16px;
  width: 100% !important;
  color: var(--ui-color-text);
  padding: 6px 8px !important;
}

#navbar .navbarmenu.show .dropdown-menu a.active {
  color: var(--ui-color-primary);
}

#navbar .navbarmenu.show ul {
  display: flex;
  flex-direction: column;
}

#navbar .navbarmenu.show ul a {
  width: 100%;
  display: flex;
  padding: 6px 12px;
}

/* ENDNAVBAR */
/* FOOTER */

#footer {
  background-color: var(--ui-color-bg);
}

#footer ul {
  gap: 8px;
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  flex-direction: column;
}

/* ENDFOOTER */
/* SIDEBAR */

#sidebar {
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  height: 100vh;
  padding: 10px;
  position: fixed;
  flex-direction: column;
  padding-top: 5px !important;
  justify-content: space-between;
  width: var(--ui-sidebar-width);
  background-color: var(--ui-color-bg);
  border-right: var(--ui-border-width) solid var(--ui-color-border);
}

#sidebar.show {
  min-width: 250px;
  max-width: 300px;
  width: 80% !important;
  z-index: 20 !important;
  display: flex !important;
  background-color: var(--ui-color-bg);
  border-right: var(--ui-border-width) solid var(--ui-color-border);
}

.sidebar-toggle {
  top: 50%;
  left: 252px;
  z-index: 10;
  opacity: 0.5;
  cursor: pointer;
  position: fixed;
}

#sidebar.collapsed .sidebar-toggle {
  transform: rotate(180deg);
  left: var(--ui-sidebar-width-collapsed);
}

#sidebar.collapsed {
  width: var(--ui-sidebar-width-collapsed) !important;
}

#sidebar.collapsed span {
  display: none;
}

.logo-svg {
  display: none;
  align-items: center;
  justify-content: center;
}

#sidebar.collapsed .logo-svg {
  display: flex;
}

#sidebar a svg {
  width: 16px;
  height: 16px;
}

#sidebar.collapsed a svg {
  width: 18px;
  height: 18px;
  margin-left: -2px;
}

#sidebar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 20px;
}

#sidebar.collapsed ul {
  margin-top: 0px !important;
}

#sidebar.collapsed ul a {
  padding: 5px;
  display: flex;
  aspect-ratio: 1/1;
  align-items: center;
  justify-content: center;
}

#sidebar ul a {
  padding: 6px 10px;
  display: flex;
  align-items: center;
  font-weight: var(--ui-font-weight);
  border-radius: var(--ui-border-radius);
  gap: 12px;
}

#sidebar ul .sub {
  opacity: 0.8;
  font-weight: 400;
  padding: 4px 10px;
  font-size: var(--ui-font-size);
}

#sidebar ul .sub.active {
  color: var(--ui-color-text-heading);
  font-weight: var(--ui-font-weight);
  background-color: var(--ui-color-bg);
}

#sidebar ul a:hover {
  color: var(--ui-color-text-heading);
  background-color: var(--ui-color-bg-accent);
}

#sidebar ul a.active {
  color: var(--ui-color-primary);
  font-weight: var(--ui-font-weight);
  background-color: var(--ui-color-bg-accent);
}

#sidebar.collapsed ~ #header {
  padding-left: 10px !important;
  margin-left: var(--ui-sidebar-width-collapsed) !important;
}

#sidebar.collapsed ~ #content {
  padding-left: 10px !important;
  margin-left: var(--ui-sidebar-width-collapsed) !important;
}

#header {
  top: 0;
  z-index: 9;
  padding: 10px;
  position: sticky;
  padding-left: 40px !important;
  margin-left: var(--ui-sidebar-width);
  background-color: var(--ui-color-bg);
}

#content {
  padding: 10px;
  padding-left: 40px !important;
  margin-left: var(--ui-sidebar-width);
}

@media (max-width: 876px) {
  #sidebar {
    display: none;
  }
  .remove-sidebar {
    display: flex !important;
  }
  .btn-logo {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
  }
  #header,
  #content {
    padding-left: 10px !important;
    margin-left: 0px !important;
  }
}

/* ENDSIDEBAR */
/* DISPLAY */

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.grid {
  display: grid;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.flexcolumn {
  display: flex;
  flex-direction: column;
}

.flex input {
  width: auto;
}

.d-flex {
  display: flex;
  align-items: center;
}

.d-none {
  display: none;
}

.hidden {
  display: none;
}

.flexcenter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.flexend {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
}

.flexbetween {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 400px) {
  .d-xs-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}

@media (min-width: 580px) {
  .d-sm-block {
    display: block !important;
  }
  .d-sm-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .d-md-none {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .d-lg-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-none {
    display: none !important;
  }
}

@media (min-width: 1100px) {
  .d-xl-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .d-xl-block {
    display: block !important;
  }
}

.overflow-0 {
  overflow: hidden !important;
}

.acpect-ratio-1x1 {
  aspect-ratio: 1/1;
}

/* ENDDISPLAY */
/* LIST */

.list-unstyled {
  display: flex;
  position: relative;
  flex-direction: column;
  gap: 6px;
  padding-left: 0;
  list-style: none;
}

.list-icon {
  aspect-ratio: 1/1;
  display: inline-block;
  margin-bottom: -3px;
  margin-right: 4px;
  width: 16px;
  height: 16px;
  background-color: var(--ui-color-primary-opacity);
  border-radius: 50%;
  background-size: 60% auto;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z' stroke='%23635bff' stroke-width='2' fill='none'/%3E%3C/svg%3E");
}

.list-unstyled .list-icon {
  position: absolute;
  margin-top: 2px;
  left: 0px;
}

.list-unstyled li {
  padding-left: 25px;
}

.bar {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: var(--ui-border-width) solid var(--ui-color-border);
}

.bar a {
  font-weight: 500;
}

.bar a.active {
  color: var(--ui-color-primary);
}

/* ENDLIST */
/* TABLE */

.table-responsive {
  overflow-x: auto;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
  width: 100%;
  font-size: 14px;
}

table th {
  text-wrap-mode: nowrap;
  width: auto;
  color: var(--ui-color-text-heading);
  font-size: var(--ui-font-size);
  font-weight: var(--ui-font-weight-strong) !important;
  text-align: start;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  text-wrap-mode: nowrap;
  padding: 8px 8px;
  border-bottom: var(--ui-border-width) solid var(--ui-color-border);
}

/* ENDTABLE */
/* TOOLTIP */

.tooltip {
  position: absolute;
  z-index: 9;
  display: block;
  padding: 0.25rem 0.5rem;
  color: var(--ui-color-bg);
  font-size: var(--ui-font-size);
  background-color: var(--ui-color-text-heading);
  border-radius: var(--ui-border-radius);
  opacity: 0;
  text-wrap-mode: nowrap;
  visibility: hidden;
  transform: translateZ(0);
  transition:
    opacity 0.15s ease,
    visibility 0.15s ease;
  pointer-events: none;
}

.tooltip.show {
  opacity: 1;
  visibility: visible;
}

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border: 6px solid transparent;
}

.tooltip[data-ui-placement="top"] {
  margin-top: -6px;
}
.tooltip[data-ui-placement="top"] .tooltip-arrow {
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-top-color: var(--ui-color-text-heading);
}
.tooltip[data-ui-placement="bottom"] {
  margin-top: 6px;
}
.tooltip[data-ui-placement="bottom"] .tooltip-arrow {
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-color: var(--ui-color-text-heading);
}
.tooltip[data-ui-placement="left"] {
  margin-left: -6px;
}
.tooltip[data-ui-placement="left"] .tooltip-arrow {
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  border-left-color: var(--ui-color-text-heading);
}
.tooltip[data-ui-placement="right"] {
  margin-left: 6px;
}
.tooltip[data-ui-placement="right"] .tooltip-arrow {
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  border-right-color: var(--ui-color-text-heading);
}

/* ENDTOOLTIP */
/* DROPWDOWN */

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  z-index: 9;
  width: auto;
  padding: 0.5rem 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  text-align: left;
  list-style: none;
  background-color: var(--ui-color-bg);
  background-clip: padding-box;
  border: var(--ui-border-width) solid var(--ui-color-border);
  border-radius: var(--ui-border-radius);
  white-space: normal;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.98);
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.dropdown-menu.show,
.dropdown[data-ui-trigger="hover"]:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.dropdown-menu a {
  font-size: var(--ui-font-size-small);
  color: var(--ui-color-text-heading);
  padding: 3px 6px !important;
}

.dropdown-menu a:hover {
  color: var(--ui-color-primary);
  background-color: var(--ui-color-bg-accent-strong);
}

.dropdown[data-ui-placement="bottom-end"] .dropdown-menu {
  left: auto;
  right: 0;
}

.dropdown[data-ui-placement="top-start"] .dropdown-menu {
  top: auto;
  bottom: 100%;
}

.dropdown[data-ui-placement="top-end"] .dropdown-menu {
  top: auto;
  bottom: 100%;
  left: auto;
  right: 0;
}

/* ENDDROPWDOWN */
/* MODAL */

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 10;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  max-width: 420px;
  width: 100%;
  margin: 10px auto;
  transform: scale(0.9);
  opacity: 0;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.modal-lg {
  max-width: 800px !important;
}

.modal.active .modal-dialog {
  transform: scale(1);
  opacity: 1;
}

.modal-content {
  margin: 0px 10px;
  background: var(--ui-color-bg);
  border-radius: var(--ui-border-radius);
}

.modal-header {
  padding: 0.8rem;
  padding-bottom: 0.2rem !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.modal-body {
  padding: 1rem;
}

.modal-footer {
  padding: 0.8rem;
  padding-top: 0.2rem !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
}

.close {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: end;
  box-shadow: none;
  font-size: 23px;
  padding: 0px;
}

/* ENDMODAL */
/* OFFCANVAS */

.offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  z-index: 10;
}

.offcanvas-backdrop.show {
  opacity: 1;
  visibility: visible;
}

.offcanvas {
  position: fixed;
  top: 0;
  right: 0;
  width: 360px;
  max-width: 100vw;
  height: 100vh;
  background: var(--ui-color-bg);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 12;
  display: flex;
  flex-direction: column;
}

.offcanvas.show {
  transform: translateX(0);
}

.offcanvas-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
}

.offcanvas-body {
  padding: 1rem;
  overflow-y: auto;
  flex: 1;
}

.offcanvas-footer {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  gap: 0.45rem;
  justify-content: end;
  padding: 0.5rem 1rem;
  margin-top: auto;
}

/* ENDOFFCANVAS */
/* CALENDAR */

.calendar-container {
  padding-top: 20px;
}

.calendar-mode-select {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  font-size: 16px;
  cursor: pointer;
}

.calendar-container {
  display: flex;
  align-items: center;
  position: relative;
}

.calendar-prev,
.calendar-next {
  background: none;
  border: none;
  font-size: 1.4em;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background 0.2s;
}

.calendar-month {
  margin: 0 10px;
  width: 280px;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding: 0 5px;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 30px);
  gap: 0px;
}

.calendar-day {
  aspect-ratio: 1/1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.calendar-day:hover {
  background-color: #f5f5f5;
}

.calendar-day.today {
  background-color: #e3f2fd;
  font-weight: 600;
  color: #1976d2;
}

.calendar-day.selected-start {
  background-color: #4caf50 !important;
  color: white;
  font-weight: bold;
}

.calendar-day.selected-end {
  background-color: var(--ui-color-primary) !important;
  color: white !important;
}

.calendar-day.range {
  color: var(--ui-color-primary);
  background-color: var(--ui-color-primary-opacity);
}

.calendar-day.disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

/* ENDCALENDAR */
/* VARIABLES */

.w-100 {
  width: 100%;
}
.h-100 {
  height: 100%;
}
.m-0 {
  margin: 0 !important;
}
.m-1 {
  margin: 0.25rem !important;
}
.m-2 {
  margin: 0.5rem !important;
}
.m-3 {
  margin: 1rem !important;
}
.m-4 {
  margin: 1.5rem !important;
}
.m-5 {
  margin: 3rem !important;
}
.m-auto {
  margin: auto !important;
}
.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}
.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}
.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}
.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}
.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}
.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}
.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}
.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}
.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}
.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}
.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}
.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}
.mt-0 {
  margin-top: 0 !important;
}
.mt-1 {
  margin-top: 0.25rem !important;
}
.mt-2 {
  margin-top: 0.5rem !important;
}
.mt-3 {
  margin-top: 1rem !important;
}
.mt-4 {
  margin-top: 1.5rem !important;
}
.mt-5 {
  margin-top: 3rem !important;
}
.mt-auto {
  margin-top: auto !important;
}
.me-0 {
  margin-right: 0 !important;
}
.me-1 {
  margin-right: 0.25rem !important;
}
.me-2 {
  margin-right: 0.5rem !important;
}
.me-3 {
  margin-right: 1rem !important;
}
.me-4 {
  margin-right: 1.5rem !important;
}
.me-5 {
  margin-right: 3rem !important;
}
.me-auto {
  margin-right: auto !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 0.25rem !important;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}
.mb-3 {
  margin-bottom: 1rem !important;
}
.mb-4 {
  margin-bottom: 1.5rem !important;
}
.mb-5 {
  margin-bottom: 3rem !important;
}
.mb-auto {
  margin-bottom: auto !important;
}
.ms-0 {
  margin-left: 0 !important;
}
.ms-1 {
  margin-left: 0.25rem !important;
}
.ms-2 {
  margin-left: 0.5rem !important;
}
.ms-3 {
  margin-left: 1rem !important;
}
.ms-4 {
  margin-left: 1.5rem !important;
}
.ms-5 {
  margin-left: 3rem !important;
}
.ms-auto {
  margin-left: auto !important;
}
.p-0 {
  padding: 0 !important;
}
.p-1 {
  padding: 0.25rem !important;
}
.p-2 {
  padding: 0.5rem !important;
}
.p-3 {
  padding: 1rem !important;
}
.p-4 {
  padding: 1.5rem !important;
}
.p-5 {
  padding: 3rem !important;
}
.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}
.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}
.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}
.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}
.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}
.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}
.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
.pt-0 {
  padding-top: 0 !important;
}
.pt-1 {
  padding-top: 0.25rem !important;
}
.pt-2 {
  padding-top: 0.5rem !important;
}
.pt-3 {
  padding-top: 1rem !important;
}
.pt-4 {
  padding-top: 1.5rem !important;
}
.pt-5 {
  padding-top: 3rem !important;
}
.pe-0 {
  padding-right: 0 !important;
}
.pe-1 {
  padding-right: 0.25rem !important;
}
.pe-2 {
  padding-right: 0.5rem !important;
}
.pe-3 {
  padding-right: 1rem !important;
}
.pe-4 {
  padding-right: 1.5rem !important;
}
.pe-5 {
  padding-right: 3rem !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.pb-1 {
  padding-bottom: 0.25rem !important;
}
.pb-2 {
  padding-bottom: 0.5rem !important;
}
.pb-3 {
  padding-bottom: 1rem !important;
}
.pb-4 {
  padding-bottom: 1.5rem !important;
}
.pb-5 {
  padding-bottom: 3rem !important;
}
.ps-0 {
  padding-left: 0 !important;
}
.ps-1 {
  padding-left: 0.25rem !important;
}
.ps-2 {
  padding-left: 0.5rem !important;
}
.ps-3 {
  padding-left: 1rem !important;
}
.ps-4 {
  padding-left: 1.5rem !important;
}
.ps-5 {
  padding-left: 3rem !important;
}
.gap-0 {
  gap: 0 !important;
}
.gap {
  gap: 0.45rem !important;
}
.gap-2 {
  gap: 0.5rem !important;
}
.gap-3 {
  gap: 1rem !important;
}
.gap-4 {
  gap: 1.5rem !important;
}
.gap-5 {
  gap: 3rem !important;
}
@media (min-width: 768px) {
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
}

/* ENDVARIABLES */
/* COLUMNS */

.row {
  --ui-gutter-x: 1.5rem;
  --ui-gutter-y: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--ui-gutter-y));
  margin-right: calc(-0.5 * var(--ui-gutter-x));
  margin-left: calc(-0.5 * var(--ui-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--ui-gutter-x) * 0.5);
  padding-left: calc(var(--ui-gutter-x) * 0.5);
  margin-top: var(--ui-gutter-y);
}
.col {
  flex: 1 0 0;
}
.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}
.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}
.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}
.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.33333333%;
}
.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}
.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}
.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.66666667%;
}
.g-0,
.gx-0 {
  --ui-gutter-x: 0;
}
.g-0,
.gy-0 {
  --ui-gutter-y: 0;
}
.g-1,
.gx-1 {
  --ui-gutter-x: 0.25rem;
}
.g-1,
.gy-1 {
  --ui-gutter-y: 0.25rem;
}
.g-2,
.gx-2 {
  --ui-gutter-x: 0.5rem;
}
.g-2,
.gy-2 {
  --ui-gutter-y: 0.5rem;
}
.g-3,
.gx-3 {
  --ui-gutter-x: 1rem;
}
.g-3,
.gy-3 {
  --ui-gutter-y: 1rem;
}
.g-4,
.gx-4 {
  --ui-gutter-x: 1.5rem;
}
.g-4,
.gy-4 {
  --ui-gutter-y: 1.5rem;
}
.g-5,
.gx-5 {
  --ui-gutter-x: 3rem;
}
.g-5,
.gy-5 {
  --ui-gutter-y: 3rem;
}
.col-6 {
  flex: 0 0 auto;
  width: 50%;
}
.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}
.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}
.col-9 {
  flex: 0 0 auto;
  width: 75%;
}
.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}
.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}
.col-12 {
  flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
