/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::
  START CUSTOM STYLING
::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
:root {
  --border-color: #E2E8F0;
  --backdrop: rgba(0, 0, 0, 0.1);

  --title: #171717;
  --subtitle: #171717;
  --description: #747681;

  --title-size: 2.2rem;
  --subtitle-size: 1.2rem;
  --description-size: 1rem;

  --bs-blue: #3f87f5;
  --bs-blue-rgb: 63, 135, 245;
  --bs-blue-hover: #2e5bff;
  --bs-blue-hover-rgb: 46, 91, 255;
  --bs-blue-background: #F1F5F9;
  --on-blue: #fff;
  --on-blue-hover: #fff;

  --bs-green: #CCF163;
  --bs-green-rgb: 204, 241, 99;
  --bs-green-hover: #B3B39B;
  --bs-green-hover-rgb: 179, 179, 155;
  --bs-green-background: #EFF3F4;
  --on-green: #000;
  --on-green-hover: #000;

  --bs-red: #de4436;
  --bs-red-rgb: 222, 68, 54;
  --bs-red-hover: #d13224;
  --bs-red-hover-rgb: 209, 50, 36;
  --bs-red-background: #F1F5F9;
  --on-red: #fff;
  --on-red-hover: #fff;

  --bs-yellow: #ffc107;
  --bs-yellow-rgb: 255, 193, 7;
  --bs-yellow-hover: #e0a800;
  --bs-yellow-hover-rgb: 224, 168, 0;
  --bs-yellow-background: #F1F5F9;
  --on-yellow: #fff;
  --on-yellow-hover: #fff;

  --bs-purple: #886cff;
  --bs-purple-rgb: 136, 108, 255;
  --bs-purple-hover: #7d57c1;
  --bs-purple-hover-rgb: 125, 87, 193;
  --bs-purple-background: #F1F5F9;
  --on-purple: #fff;
  --on-purple-hover: #fff;

  --bs-lightred: #f06b78;
  --bs-lightred-rgb: 240, 107, 120;
  --bs-lightred-hover: #e95a67;
  --bs-lightred-hover-rgb: 233, 90, 103;
  --bs-lightred-background: #F1F5F9;
  --on-lightred: #fff;
  --on-lightred-hover: #fff;

  --bs-primary: var(--bs-green);
  --bs-primary-rgb: var(--bs-green-rgb);
  --bs-primary-hover: var(--bs-green-hover);
  --bs-primary-hover-rgb: var(--bs-green-hover-rgb);
  --on-primary: var(--on-green);
  --on-primary-hover: var(--on-green-hover);

  --background: var(--bs-blue-background);
  --foreground: #171717;

  --card-background: #ffffff;

  --header-height: 5rem;
  --sidebar-width: 17rem;
  --sidebar-collapsed-width: 5rem;
  --default-spacing: 1.5rem;
  --time-animation: 0.2s;

  --default-border-radius: 0.8rem;
  --default-border-radius-sm: 0.5rem;
}

::-webkit-scrollbar {
  height: 12px;
  width: 5px;
  background: var(--background);
  right: 0
}

::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  -webkit-border-radius: 10px;
  border-radius: 10px
}

::-webkit-scrollbar-corner {
  background: #fff
}

body {
  background-color: var(--background);
  padding: 0;
  color: var(--foreground);
}

.adm-wrapper {
  display: flex;
  height: 100dvh;
  flex-direction: column;
  overflow: hidden;
}

.adm-header-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--title);
  margin-bottom: 0.4rem;
  margin: 0;
}

.adm-header-description {
  font-size: 0.7rem;
  color: var(--description);
  font-weight: 500;
  margin: 0;
}

@media (min-width: 1024px) {
  .adm-header-title {
    font-size: 1.7rem;
  }

  .adm-header-description {
    font-size: 0.8rem;
  }
}

.adm-header {
  height: var(--header-height);
  /* background-color: var(--background); */
  /* border-bottom: 0.1rem solid var(--border-color); */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--default-spacing);
}

.adm-header .btn-icon {
  color: var(--foreground);
}

.adm-sidebar {
  width: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  left: -100%;
  transition: 0.4s;
  z-index: 5;
}

.adm-sidebar-logo {
  height: 100%;
  width: 60%;
  object-fit: contain;
  transition: var(--time-animation);
}

.adm-sidebar>.adm-sidebar-wrapper {
  height: 100dvh;
  width: 100%;
  max-width: var(--sidebar-width);
  background-color: var(--card-background);
  left: calc(-1*var(--sidebar-width));
  transition: var(--time-animation);
  position: absolute;
  display: flex;
  flex-direction: column;
  z-index: 2;
  border-right: 0.1rem solid rgba(var(--bs-primary-rgb), 0.1);
}

.adm-sidebar>.adm-sidebar-backdrop {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  left: -100%;
  right: 0;
  width: 100%;
  background-color: var(--backdrop);
  transition: 0;
}

.adm-sidebar-header {
  height: var(--header-height);
  /* border-bottom: 0.1rem solid var(--border-color); */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--default-spacing);
}

.adm-sidebar-close {
  font-size: 1rem;
  color: var(--foreground);
}

.adm-sidebar.checked,
.adm-sidebar.checked>div {
  left: 0
}

.adm-sidebar-body {
  flex: 1;
  overflow-y: auto;
  padding: var(--default-spacing) 0;
  padding-top: 0.4rem;
}

.adm-sidebar-menu,
.adm-sidebar-menu ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0 1.5rem;
  margin: 0;
}

.adm-sidebar-menu li {
  margin: 0;
  padding: 0;
}

.adm-sidebar-menu .menu-arrow {
  right: var(--default-spacing);
}

.adm-sidebar-menu li>a {
  color: var(--foreground);
  display: flex;
  padding: 0.7rem 0;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  position: relative;
  padding-left: var(--default-spacing);
  padding-right: var(--default-spacing);
  font-weight: bold;
}

.adm-sidebar-menu li>a>i {
  width: 1.6rem;
  font-size: 1.2rem;
}

.adm-sidebar-menu ul li>a {
  opacity: 0.8;
}

.adm-main {
  flex: 1;
  padding: var(--default-spacing);
  height: 100%;
  overflow-y: auto;
}

@media (min-width: 1024px) {
  :root {
    --header-height: 7rem;
  }

  .adm-main {
    padding: 0.5rem calc(var(--default-spacing) + 2rem);
  }
}

.adm-sidebar li>a.active {
  background-color: rgba(var(--bs-primary-rgb), 1);
  color: var(--on-primary);
  /* border-right: 0.2rem solid var(--bs-primary); */
  border-radius: var(--default-border-radius);
  font-weight: bold;
}

body[data-dlayout=primary] {
  .adm-header {
    background-color: var(--bs-primary);

    .btn-icon {
      color: var(--on-primary);
    }
  }

  .adm-sidebar .adm-sidebar-header {
    background-color: var(--bs-primary);

    .adm-sidebar-logo {
      filter: brightness(0) invert(1);
    }

    .adm-sidebar-close {
      color: var(--on-primary);
    }
  }

  .adm-sidebar>.adm-sidebar-wrapper {
    border-right: unset;
  }

  .adm-sidebar .adm-sidebar-body {
    border-right: 0.1rem solid var(--border-color);
  }
}

@media (min-width: 1024px) {
  .adm-wrapper {
    display: grid;
    grid-template:
      "sidebar header" var(--header-height) "sidebar main" auto
      "sidebar footer" min-content /
      var(--sidebar-width) auto;
    transition: var(--time-animation);
  }

  .adm-header {
    grid-area: header;
    padding: var(--default-spacing) calc(var(--default-spacing) + 3rem) var(--default-spacing) calc(var(--default-spacing) + 2rem);
  }

  .adm-sidebar {
    grid-area: sidebar;
    left: 0;
    position: relative;
    transition: var(--time-animation);
  }

  .adm-sidebar>.adm-sidebar-wrapper,
  .adm-sidebar>.adm-sidebar-backdrop {
    position: static;
  }

  .adm-sidebar-header {
    justify-content: center;
  }

  .adm-main {
    grid-area: main;
  }

  .adm-footer {
    grid-area: footer;
    height: min-content;
  }

  .adm-sidebar-close {
    display: none;
  }

  .adm-wrapper:has(.adm-sidebar.checked) {
    display: grid;
    grid-template:
      "sidebar header" var(--header-height) "sidebar main" auto
      "sidebar footer" min-content /
      var(--sidebar-collapsed-width) auto;
  }

  .adm-sidebar.checked:hover {
    width: var(--sidebar-width);
  }

  .adm-sidebar.checked:not(:hover) li>a {
    justify-content: center;
  }

  .adm-sidebar.checked:not(:hover) li>a>span {
    display: none;
  }

  .adm-sidebar.checked:not(:hover) li>a>i {
    display: flex;
    justify-content: center;
  }

  .adm-sidebar.checked:not(:hover) li>div.collapse {
    display: none;
  }

  .adm-sidebar.checked:not(:hover) .adm-sidebar-logo {
    width: 100%;
  }
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::
  END CUSTOM STYLING
::::::::::::::::::::::::::::::::::::::::::::::::::::::: */


/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::
  START STYLING
::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
/* .row {
  margin-left: 0;
  margin-right: 0;
} */

.btn-pencil-edit {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2rem;
  width: 2rem;
  border-radius: 100%;
  border: 0.2rem solid var(--border-color);
  background-color: var(--card-background);
  font-size: 1rem;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.card-profile .card-profile-avatar-img .btn-pencil-edit {
  position: absolute;
  top: 0.3rem;
  right: 0.3rem;
}

.card-profile .card-profile-avatar-img {
  position: relative;
}

.card-profile .card-profile-background {
  position: relative;
}

.card-profile .card-profile-background>img {
  max-height: 15rem;
  object-fit: cover;
  border-top-left-radius: var(--default-border-radius);
  border-top-right-radius: var(--default-border-radius);
}

.card-profile .card-profile-background .btn-pencil-edit {
  position: absolute;
  top: 0.3rem;
  right: 0.3rem;
}

.card-profile .card-profile-avatar {
  margin-top: -5rem;
}

.card-profile .card-profile-avatar img {
  height: 9rem;
  width: 9rem;
  object-fit: cover;
}

.page-title-box.adm-title-box {
  padding: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: unset;
  margin: 0;
  margin-bottom: var(--default-spacing);
  background-color: transparent;
  box-shadow: none;
  align-items: flex-start;
}

.form-group {
  margin-bottom: 1rem;
}

.text-danger {
  color: var(--bs-red) !important;
}

.text-success {
  color: var(--bs-green) !important;
}

.text-warning {
  color: var(--bs-yellow) !important;
}

.page-progress,
.page-loading {
  display: flex;
  width: 100%;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.2);
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
}

.card-loading {
  display: flex;
  width: 100%;
  flex-direction: column;
  background-color: rgba(240, 240, 240, 0.25);
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
}

.page-progress>.progress {
  width: 100%;
}

.page-progress>.spinner-container {
  display: flex;
  flex: 1;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.loader,
.loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}

.loader {
  margin: 60px auto;
  font-size: 5px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(255, 255, 255, 0.6);
  border-right: 1.1em solid rgba(255, 255, 255, 0.6);
  border-bottom: 1.1em solid rgba(255, 255, 255, 0.6);
  border-left: 1.1em solid #7d57c1;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.card-spinner {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.swal2-confirm.swal2-styled {
  background-color: var(--bs-primary) !important;
  color: var(--on-primary);
}

.btn-icon:not(.no-fs) {
  font-size: 1.1rem;
}

.btn-icon {
  color: #000;
  height: 2.16rem;
  width: 2.16rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: #ced4da;
}

.btn-primary {
  color: var(--on-primary);
}

.btn-icon.btn-primary {
  color: var(--on-primary);
}

.btn-icon.btn-success {
  color: var(--on-green);
}

.btn-icon.btn-danger {
  color: var(--on-red);
}

.btn-icon.auto-width {
  width: auto;
}

.btn-icon.btn-icon-sm {
  font-size: 0.9rem;
}

.btn-icon.btn-icon-menu {
  width: 1.3rem;
  font-weight: bold;
  border: 0;
}

td {
  color: #000;
}

th.counter {
  width: 1rem;
}

.card,
.card-body,
.card-header {
  border-radius: var(--default-border-radius);
  border-color: var(--border-color);
}

.modal-content {
  border-radius: var(--default-border-radius);
}

.btn {
  border-radius: var(--default-border-radius-sm);
}

.dropdown-menu {
  border-radius: var(--default-border-radius-sm);
}

.form-control,
.form-select {
  border-radius: var(--default-border-radius-sm);
  font-size: var(--description-size);
  height: 3.5rem;
  background-color: var(--background);
  border-color: var(--background);
  color: var(--foreground) !important;
}

/* .border {
  border-color: var(--border-color) !important;
} */

.form-control.v2 {
  background-color: var(--card-background);
  border-color: var(--border-color);
}

.form-control:not(.v2).is-invalid:focus,
.form-control:not(.v2).is-valid:focus,
.form-control:not(.v2):invalid:focus,
.form-control:not(.v2):valid:focus {
  /* box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px !important; */
  background-color: var(--background);
}

.custom-select.is-invalid:focus,
.custom-select.is-valid:focus,
.custom-select:invalid:focus,
.custom-select:valid:focus,
.form-control.is-invalid:focus,
.form-control.is-valid:focus,
.form-control:invalid:focus,
.form-control:valid:focus {
  border-color: var(--bs-primary) !important;
  /* box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px !important; */
  /* box-shadow: 0 .75rem 6rem rgba(56, 65, 74, .03) !important; */
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px !important;
}

.check-with-content:has(>label>input[type="radio"]:not(:checked))>.content-check {
  display: none;
}

.check-with-content:has(>label>input[type="checkbox"]:not(:checked))>.content-check {
  display: none;
}

.cs-btn-group {
  gap: 0.1rem;
}

.cs-btn-group>*:not(:first-child) {
  border-left: 0.1rem solid #33333330 !important;
}

.header-section-title {
  border-radius: var(--default-border-radius-sm);
}

.card-header {
  background-color: transparent;
  border-radius: var(--default-border-radius) !important;
}

.object-fit-contain {
  object-fit: contain;
}

.object-fit-cover {
  object-fit: cover;
}

.object-fit-fill {
  object-fit: fill;
}

.object-fit-scale {
  object-fit: scale-down;
}

.object-fit-none {
  object-fit: none;
}

@media (min-width: 768px) {
  .page-title-box.adm-title-box {
    flex-direction: row;
    align-items: center;
  }
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::
  END STYLING
::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::
  START OTHER STYLING
::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::
  END OTHER STYLING
::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

@media print {

  .no-print,
  .no-print * {
    display: none !important;
  }

  .adm-sidebar {
    display: none;
  }

  .adm-header {
    display: none;
  }

  .btn {
    display: none;
  }

  .print-section .card-print {
    border: none;
    background-color: transparent;
    box-shadow: none;
  }
}

@media (min-width: 1920px) {
  html {
    font-size: 19px;
  }
}

.bg-card {
  background-color: var(--card-background);
}

.text-title {
  font-weight: 800;
  font-size: var(--title-size);
  color: var(--title);
}

.text-subtitle {
  font-weight: 600;
  font-size: var(--subtitle-size);
  color: var(--subtitle);
}

.text-description {
  font-weight: 400;
  font-size: var(--description-size);
  color: var(--description);
}

.opacity-0 {
  opacity: 0;
}

.opacity-25 {
  opacity: 0.25;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-100 {
  opacity: 1;
}

.btn {
  min-height: 3.5rem;
  font-size: var(--description-size);
}

a.btn:not(.btn-icon.btn-icon-menu) {
  padding: 1rem;
}

.btn-icon.btn-icon-menu {
  height: inherit;
  min-height: inherit;
}

.card {
  background-color: var(--card-background);
  /* box-shadow: none; */
  border-color: var(--background);
  /* box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px; */
}

.separator {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1rem 0;
  font-size: var(--description-size);
  gap: 0.5rem;
  color: var(--description);
}

.separator::before,
.separator::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--border-color);
}

.separator:not(:empty)::before {
  margin-right: .25em;
}

.separator:not(:empty)::after {
  margin-left: .25em;
}

.bg-primary-10 {
  background-color: rgba(var(--bs-primary-rgb), 0.1);
}

.bg-primary-20 {
  background-color: rgba(var(--bs-primary-rgb), 0.2);
}

.bg-primary-30 {
  background-color: rgba(var(--bs-primary-rgb), 0.3);
}

.bg-primary-40 {
  background-color: rgba(var(--bs-primary-rgb), 0.4);
}

.bg-primary-50 {
  background-color: rgba(var(--bs-primary-rgb), 0.5);
}

.bg-primary-60 {
  background-color: rgba(var(--bs-primary-rgb), 0.6);
}

.bg-primary-70 {
  background-color: rgba(var(--bs-primary-rgb), 0.7);
}

.bg-primary-80 {
  background-color: rgba(var(--bs-primary-rgb), 0.8);
}

.bg-primary-90 {
  background-color: rgba(var(--bs-primary-rgb), 0.9);
}

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

.form-control[readonly],
.form-control[disabled] {
  opacity: 0.5;
}

.btn-sm {
  height: inherit;
}

.modal-header {
  border: none;
}

.modal-title {
  font-size: var(--subtitle-size);
  font-weight: bold;
}

.form-label {
  font-size: var(--description-size);
  color: var(--description);
  font-weight: 500;
}

.card-header {
  border: none;
}

.card-footer {
  border: none;
}

.header-title {
  font-weight: bold;
  font-size: 1.2rem;
}

.btn.btn-icon.btn-header {
  height: 2.8rem !important;
  width: 2.8rem !important;
  border-radius: var(--default-border-radius-sm);
}

.adm-header-title-container {
  display: none;
}

@media (max-width: 1024px) {
  .desktop {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .mobile {
    display: none !important;
  }
}

.page-title-box .page-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--title);
}

@media (min-width: 1024px) {
  .page-title-box .page-title {
    opacity: 0;
  }
}

.text-on-primary {
  color: var(--on-primary);
}

.swal2-confirm.swal2-styled {
  background-color: var(--bs-primary) !important;
  color: var(--on-primary) !important;
}

.swal2-styled {
  border-radius: var(--default-border-radius-sm) !important;
}

.swal2-popup {
  border-radius: var(--default-border-radius) !important;
}

.input-group {
  display: flex;
}

.input-group>* {
  border-radius: 0;
}

.input-group>:first-child {
  border-top-left-radius: var(--default-border-radius-sm);
  border-bottom-left-radius: var(--default-border-radius-sm);
}

.input-group>:last-child {
  border-top-right-radius: var(--default-border-radius-sm);
  border-bottom-right-radius: var(--default-border-radius-sm);
}

.input-group>.input-group-text {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background);
}

.input-group-icon-left {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
}

.input-group-icon-left>.input-group-icon {
  position: absolute;
  left: 1rem;
  font-size: var(--description-size);
}

.input-group-icon-left>.form-control {
  padding-left: 2.5rem;
}

.cs-list-group {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* padding: var(--default-spacing); */
  list-style: none;
  margin: 0;
  padding: 0;
}

.cs-list-group>li {
  width: 100%;
}

.cs-list-group-item {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: calc(var(--default-spacing) - 0.3rem) var(--default-spacing);
  border-bottom: 0.1rem solid var(--border-color);
  transition: 0.3s;
}

.cs-list-group-item-counter {
  font-size: calc(var(--description-size) - 0.2rem);
  opacity: 0.9;
}

.cs-list-group-item-content {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.cs-list-group-item-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: var(--background);
  height: 2rem;
  width: 2rem;
}

.cs-list-group-item-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cs-list-group-item-title {
  font-size: calc(var(--description-size) + 0.05rem);
  font-weight: bold;
  margin: 0;
  margin-bottom: 0.25rem;
}

.cs-list-group-item:hover {
  background-color: rgba(var(--bs-primary-rgb), 0.04);
}

.cs-list-group-item-description {
  display: flex;
  flex-direction: column;
  gap: 0rem;
  font-size: calc(var(--description-size) - 0.11rem);
  opacity: 0.7;
  margin: 0;
}

.cs-list-group-item-description b {
  font-weight: bold;
}

label.form-group {
  width: 100%;
}

@media print {
  @page {
    size: auto;
    /* auto is the initial value */
    margin: 0;
    /* this affects the margin in the printer settings */
  }

  .no-print,
  .no-print * {
    display: none !important;
  }

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

  ::-webkit-scrollbar {
    display: none;
  }
}

.adm-sidebar-bots-selector {
  display: flex;
  align-items: center;
  background-color: var(--bs-primary);
  border-radius: 0.75rem;
  justify-content: space-between;
}

.adm-sidebar-bots-selector h3,
.adm-sidebar-bots-selector p {
  margin: 0;
}

.adm-sidebar-bots-selector h3 {
  font-size: 1rem;
  font-weight: bold;
}

.adm-sidebar-bots-selector p {
  font-size: 0.75rem;
  font-weight: lighter;
}