@charset "UTF-8";
/*
 * Senternal Hosting Control Panel
 * (c) Senternal LLC <http://www.senternal.com>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */
/*
 * Senternal Hosting Control Panel
 * (c) Senternal LLC <http://www.senternal.com>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */
/*
 * Senternal Hosting Control Panel
 * (c) Senternal LLC <http://www.senternal.com>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */
/*
 * Senternal Hosting Control Panel
 * (c) Senternal LLC <http://www.senternal.com>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");
:root {
  --bs-primary: #556ee6;
  --bs-secondary: #74788d;
  --bs-success: #34c38f;
  --bs-info: #50a5f1;
  --bs-warning: #f1b44c;
  --bs-danger: #f46a6a;
  --bs-light: #eff2f7;
  --bs-dark: #343a40;
  --bs-body-bg: #f8f8fb;
  --bs-body-color: #495057;
  --bs-secondary-bg: #fff;
  --bs-tertiary-bg: #f8f9fa;
  --bs-border-color: #dee2e6;
  --bs-font-sans-serif: Poppins, sans-serif;
  --bs-body-font-size: 0.9375rem;
  --bs-body-line-height: 1.5;
  --theme-header-height: 70px;
  --theme-sidebar-width: 250px;
  --theme-sidebar-collapsed-width: 70px;
  --theme-footer-height: 60px;
  --theme-sidebar-bg: #fff;
  --theme-sidebar-color: #545a6d;
  --theme-sidebar-hover-color: #383c40;
  --theme-sidebar-active-color: #556ee6;
  --theme-sidebar-icon-color: #7f8387;
  --theme-header-bg: #fff;
  --theme-header-color: #555b6d;
  --bs-card-bg: #fff;
  --bs-card-border-color: transparent;
  --bs-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  --bs-box-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.03);
  --bs-box-shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.08);
  --bs-border-radius: 4px;
  --bs-border-radius-sm: 2px;
  --bs-border-radius-lg: 8px;
}

[data-bs-theme=dark] {
  --bs-body-bg: #222736;
  --bs-body-color: #a6b0cf;
  --bs-secondary-bg: #2a3042;
  --bs-tertiary-bg: #32394e;
  --bs-border-color: #32394e;
  --bs-heading-color: #f6f6f6;
  --bs-card-bg: #2a3042;
  --bs-card-border-color: #32394e;
  --bs-input-bg: #2a3042;
  --bs-input-border-color: #32394e;
  --bs-input-color: #a6b0cf;
  --bs-table-bg: #2a3042;
  --bs-table-border-color: #32394e;
  --bs-dropdown-bg: #2a3042;
  --bs-dropdown-border-color: #32394e;
  --theme-sidebar-bg: #2a3042;
  --theme-sidebar-color: #a6b0cf;
  --theme-sidebar-hover-color: #fff;
  --theme-sidebar-active-color: #fff;
  --theme-header-bg: #2a3042;
  --theme-header-color: #e9ecef;
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
}

/*
 * Senternal Hosting Control Panel
 * (c) Senternal LLC <http://www.senternal.com>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */
#layout-wrapper {
  min-height: 100vh;
}

.main-content {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-left: var(--theme-sidebar-width);
  min-height: 100vh;
  transition-property: margin-left;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}
.sidebar-collapsed .main-content {
  margin-left: var(--theme-sidebar-collapsed-width);
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .main-content {
    margin-left: var(--theme-sidebar-collapsed-width);
  }
}
.sidebar-hidden .main-content {
  margin-left: 0;
}
@media (max-width: 767.98px) {
  .main-content {
    margin-left: 0;
  }
}

.page-content {
  flex: 1 0 auto;
  padding: calc(var(--theme-header-height) + 24px) 24px 24px;
}
@media (max-width: 767.98px) {
  .page-content {
    padding: calc(var(--theme-header-height) + 16px) 16px 16px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  margin-right: auto;
  margin-left: auto;
}

body[data-layout=vertical] .vertical-menu {
  display: block;
}

body[data-layout=horizontal] .vertical-menu {
  display: none;
}
body[data-layout=horizontal] .main-content {
  margin-left: 0;
}
body[data-layout=horizontal] .page-content {
  padding-top: calc(var(--theme-header-height) + 70px + 24px);
}

.masquerade-banner {
  position: fixed;
  top: 0;
  left: var(--theme-sidebar-width);
  right: 0;
  z-index: 1031;
  padding: 0.5rem 1.5rem;
  transition-property: left;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}
.sidebar-collapsed .masquerade-banner {
  left: var(--theme-sidebar-collapsed-width);
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .masquerade-banner {
    left: var(--theme-sidebar-collapsed-width);
  }
}
.sidebar-hidden .masquerade-banner {
  left: 0;
}
@media (max-width: 767.98px) {
  .masquerade-banner {
    left: 0;
  }
}

body.masquerade-active {
  --masquerade-banner-height: 46px;
}
body.masquerade-active .navbar-header {
  top: var(--masquerade-banner-height);
}
body.masquerade-active .page-content {
  padding-top: calc(var(--theme-header-height) + var(--masquerade-banner-height) + 24px);
}
@media (max-width: 767.98px) {
  body.masquerade-active .page-content {
    padding-top: calc(var(--theme-header-height) + var(--masquerade-banner-height) + 16px);
  }
}

body[data-layout-size=boxed] #layout-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
body[data-layout-size=boxed] .navbar-header,
body[data-layout-size=boxed] .footer {
  max-width: 1300px;
  margin: 0 auto;
}

body[data-layout-scrollable=true] .vertical-menu {
  position: absolute;
}
body[data-layout-scrollable=true] .navbar-header {
  position: absolute;
}

.vertical-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.35);
  z-index: 1029;
  opacity: 0;
  visibility: hidden;
  transition-property: opacity, visibility;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}
.vertical-overlay.active {
  opacity: 1;
  visibility: visible;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -12px;
  margin-left: -12px;
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: 12px;
  padding-left: 12px;
}

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1400px) {
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
/*
 * Senternal Hosting Control Panel
 * (c) Senternal LLC <http://www.senternal.com>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */
.vertical-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--theme-sidebar-width);
  background-color: var(--theme-sidebar-bg);
  z-index: 1030;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transition-property: width, left;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}
.vertical-menu[data-bs-theme=dark] {
  background-color: #2a3042;
  --theme-sidebar-bg: #2a3042;
  --theme-sidebar-color: #a6b0cf;
  --theme-sidebar-hover-color: #fff;
  --theme-sidebar-active-color: #fff;
  --theme-sidebar-icon-color: #6a7187;
}
@media (max-width: 767.98px) {
  .vertical-menu {
    left: calc(-1 * var(--theme-sidebar-width));
  }
  .vertical-menu.show {
    left: 0;
  }
}

.navbar-brand-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--theme-header-height);
  padding: 0 1rem;
  background-color: inherit;
}
.navbar-brand-box .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.navbar-brand-box .logo .logo-img {
  height: 40px;
  width: auto;
}
.navbar-brand-box .logo .logo-txt {
  margin-left: 0.75rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
}

.sidebar-content,
.sidebar-menu-scroll {
  height: calc(100vh - var(--theme-header-height));
  overflow-y: auto;
}
.sidebar-content::-webkit-scrollbar,
.sidebar-menu-scroll::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.sidebar-content::-webkit-scrollbar-track,
.sidebar-menu-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.sidebar-content::-webkit-scrollbar-thumb,
.sidebar-menu-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
}
.sidebar-content::-webkit-scrollbar-thumb:hover,
.sidebar-menu-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(230, 230, 230, 0.2);
}

.sidebar-collapsed .vertical-menu {
  width: var(--theme-sidebar-collapsed-width);
  overflow: visible;
}
.sidebar-collapsed .vertical-menu .sidebar-menu-scroll {
  overflow: visible;
}
.sidebar-collapsed .vertical-menu #sidebar-menu {
  overflow: visible;
}
.sidebar-collapsed .vertical-menu .navbar-brand-box {
  padding: 0 0.5rem;
}
.sidebar-collapsed .vertical-menu .navbar-brand-box .logo .logo-txt {
  display: none;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .vertical-menu {
    width: var(--theme-sidebar-collapsed-width);
    overflow: visible;
  }
  .vertical-menu .sidebar-menu-scroll {
    overflow: visible;
  }
  .vertical-menu #sidebar-menu {
    overflow: visible;
  }
  .vertical-menu .navbar-brand-box {
    padding: 0 0.5rem;
  }
  .vertical-menu .navbar-brand-box .logo .logo-txt {
    display: none;
  }
  .sidebar-hidden .vertical-menu {
    left: calc(-1 * var(--theme-sidebar-collapsed-width));
  }
  .sidebar-hidden .main-content {
    margin-left: 0;
  }
}
@media (max-width: 767.98px) {
  .vertical-menu.show {
    left: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
}
.sidebar-badge {
  margin-left: auto;
  padding: 0.2em 0.5em;
  font-size: 0.65rem;
  font-weight: 500;
  border-radius: 4px;
}

/*
 * Senternal Hosting Control Panel
 * (c) Senternal LLC <http://www.senternal.com>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */
.navbar-header {
  position: fixed;
  top: 0;
  right: 0;
  left: var(--theme-sidebar-width);
  height: var(--theme-header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem 0 0;
  background-color: var(--theme-header-bg);
  box-shadow: 0 0.75rem 1.5rem rgba(18, 38, 63, 0.03);
  z-index: 1020;
  transition-property: left;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}
.sidebar-collapsed .navbar-header {
  left: var(--theme-sidebar-collapsed-width);
}
@media (max-width: 991.98px) {
  .navbar-header {
    left: 0;
    padding-left: 1rem;
  }
}

.header-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--theme-header-height);
  padding: 0 0.75rem;
  color: var(--theme-header-color);
  font-size: 1.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
  transition-property: color, background-color;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}
.header-item:hover {
  color: #556ee6;
  background-color: rgba(85, 110, 230, 0.05);
}
.header-item:focus {
  outline: none;
  box-shadow: none;
}

.noti-icon {
  font-size: 1.375rem;
}

.navbar-header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--theme-header-color);
  font-size: 1.25rem;
  cursor: pointer;
  border-radius: 4px;
  transition-property: color, background-color;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}
.header-toggle-btn:hover {
  color: #556ee6;
  background-color: rgba(85, 110, 230, 0.1);
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 20px;
}
.hamburger-icon span {
  display: block;
  height: 2px;
  background-color: currentColor;
  border-radius: 2px;
  transition-property: transform, opacity;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}
.hamburger-icon.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger-icon.open span:nth-child(2) {
  opacity: 0;
}
.hamburger-icon.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.app-search {
  position: relative;
}
@media (max-width: 767.98px) {
  .app-search {
    display: none;
  }
}
.app-search .form-control {
  width: 240px;
  height: 38px;
  padding: 0.5rem 1rem 0.5rem 2.5rem;
  font-size: 0.8375rem;
  background-color: var(--bs-tertiary-bg);
  border: none;
  border-radius: 30px;
}
.app-search .form-control:focus {
  box-shadow: none;
  background-color: var(--bs-tertiary-bg);
}
.app-search .form-control::placeholder {
  color: var(--bs-secondary-color);
}
.app-search .form-control::-webkit-input-placeholder {
  color: var(--bs-secondary-color);
}
.app-search .form-control::-moz-placeholder {
  color: var(--bs-secondary-color);
}
.app-search .form-control:-ms-input-placeholder {
  color: var(--bs-secondary-color);
}
.app-search .search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--bs-secondary-color);
  font-size: 0.875rem;
}

.navbar-header-right {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.header-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--theme-header-color);
  font-size: 1.25rem;
  cursor: pointer;
  border-radius: 4px;
  transition-property: color, background-color;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}
.header-btn:hover {
  color: #556ee6;
  background-color: rgba(85, 110, 230, 0.1);
}
.header-btn .badge {
  position: absolute;
  top: 2px;
  right: 2px;
  font-size: 0.625rem;
  padding: 0.2em 0.4em;
}

.theme-toggle .light-icon {
  display: none;
}
.theme-toggle .dark-icon {
  display: block;
}
[data-bs-theme=dark] .theme-toggle .light-icon {
  display: block;
}
[data-bs-theme=dark] .theme-toggle .dark-icon {
  display: none;
}

img.header-profile-user {
  width: 36px;
  height: 36px;
  object-fit: cover;
}

.header-profile {
  position: relative;
  margin-left: 0.5rem;
}
.header-profile .header-profile-user {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem;
  cursor: pointer;
  border-radius: 4px;
  transition-property: background-color;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}
.header-profile .header-profile-user:hover {
  background-color: var(--bs-tertiary-bg);
}
.header-profile .header-profile-user img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.header-profile .header-profile-user .user-name {
  font-size: 0.8375rem;
  font-weight: 500;
  color: var(--bs-body-color);
}
@media (max-width: 767.98px) {
  .header-profile .header-profile-user .user-name {
    display: none;
  }
}
.header-profile .header-profile-user .user-role {
  font-size: 0.6875rem;
  color: var(--bs-secondary-color);
}
@media (max-width: 767.98px) {
  .header-profile .header-profile-user .user-role {
    display: none;
  }
}
.header-profile .header-profile-user .dropdown-arrow {
  font-size: 0.75rem;
  color: var(--bs-secondary-color);
}
@media (max-width: 767.98px) {
  .header-profile .header-profile-user .dropdown-arrow {
    display: none;
  }
}

.notification-dropdown {
  width: 320px;
  padding: 0;
  max-height: 400px;
}
.notification-dropdown .dropdown-header {
  padding: 1rem;
  border-bottom: 1px solid var(--bs-border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.notification-dropdown .dropdown-header h6 {
  margin: 0;
  font-weight: 600;
}
.notification-dropdown .notification-list {
  max-height: 280px;
  overflow-y: auto;
}
.notification-dropdown .notification-list::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.notification-dropdown .notification-list::-webkit-scrollbar-track {
  background: transparent;
}
.notification-dropdown .notification-list::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
}
.notification-dropdown .notification-list::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.2);
}
.notification-dropdown .notification-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  transition-property: background-color;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}
.notification-dropdown .notification-item:hover {
  background-color: var(--bs-tertiary-bg);
}
.notification-dropdown .notification-item.unread {
  background-color: rgba(85, 110, 230, 0.05);
}
.notification-dropdown .notification-item .avatar {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.notification-dropdown .notification-item .notification-content {
  flex: 1;
  min-width: 0;
}
.notification-dropdown .notification-item .notification-content .notification-title {
  font-size: 0.8375rem;
  font-weight: 500;
  color: var(--bs-body-color);
  margin-bottom: 0.125rem;
}
.notification-dropdown .notification-item .notification-content .notification-text {
  font-size: 0.75rem;
  color: var(--bs-secondary-color);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.notification-dropdown .notification-item .notification-content .notification-time {
  font-size: 0.6875rem;
  color: var(--bs-secondary-color);
  margin-top: 0.25rem;
}
.notification-dropdown .dropdown-footer {
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--bs-border-color);
  text-align: center;
}
.notification-dropdown .dropdown-footer a {
  font-size: 0.8375rem;
  font-weight: 500;
  color: #556ee6;
  text-decoration: none;
}
.notification-dropdown .dropdown-footer a:hover {
  text-decoration: underline;
}

@media (min-width: 992px) {
  .navbar-header .dropdown:hover > .dropdown-menu {
    display: block;
  }
  .navbar-header .dropdown > .dropdown-menu {
    top: 100%;
    margin-top: 0;
  }
  .navbar-header .dropdown > .dropdown-menu-end {
    right: 0;
    left: auto;
  }
}
[data-bs-theme=dark] .navbar-header {
  background-color: var(--theme-header-bg);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
}
[data-bs-theme=dark] .app-search .form-control {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--bs-body-color);
}

/*
 * Senternal Hosting Control Panel
 * (c) Senternal LLC <http://www.senternal.com>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */
.footer {
  flex-shrink: 0;
  height: var(--theme-footer-height);
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  background-color: #f2f2f5;
  color: #74788d;
  font-size: 0.8375rem;
}
.footer .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .row {
  width: 100%;
  align-items: center;
}
.footer a {
  color: #556ee6;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 575.98px) {
  .footer-right {
    display: none;
  }
}

[data-bs-theme=dark] .footer {
  background-color: #2a3042;
  color: #a6b0cf;
}

/*
 * Senternal Hosting Control Panel
 * (c) Senternal LLC <http://www.senternal.com>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */
.page-title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 767.98px) {
  .page-title-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}
.page-title-box h4, .page-title-box .page-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--bs-heading-color, var(--bs-body-color));
  text-transform: uppercase;
}

.page-title-right {
  display: flex;
  align-items: center;
}
.page-title-right .breadcrumb {
  margin: 0;
  padding: 0;
  background: transparent;
}

.content-wrapper {
  padding: 1.5rem;
  background-color: var(--bs-card-bg);
  border-radius: 4px;
  box-shadow: var(--bs-box-shadow);
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--bs-border-color);
}
.section-header h5, .section-header .section-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--bs-heading-color, var(--bs-body-color));
}

.section-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
}
.empty-state .empty-state-icon {
  font-size: 4rem;
  color: var(--bs-secondary-color);
  margin-bottom: 1rem;
}
.empty-state .empty-state-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--bs-body-color);
  margin-bottom: 0.5rem;
}
.empty-state .empty-state-text {
  color: var(--bs-secondary-color);
  margin-bottom: 1.5rem;
}

.loading-state {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}
.loading-state .spinner-border {
  width: 2rem;
  height: 2rem;
  border-width: 0.2em;
}

.error-state {
  text-align: center;
  padding: 3rem 1.5rem;
}
.error-state .error-state-icon {
  font-size: 4rem;
  color: #f46a6a;
  margin-bottom: 1rem;
}
.error-state .error-state-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #f46a6a;
  margin-bottom: 0.5rem;
}
.error-state .error-state-text {
  color: var(--bs-secondary-color);
  margin-bottom: 1.5rem;
}

.content-divider {
  height: 1px;
  background-color: var(--bs-border-color);
  margin: 1.5rem 0;
}

.content-divider-text {
  display: flex;
  align-items: center;
  color: var(--bs-secondary-color);
  font-size: 0.8375rem;
  margin: 1.5rem 0;
}
.content-divider-text::before, .content-divider-text::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: var(--bs-border-color);
}
.content-divider-text::before {
  margin-right: 1rem;
}
.content-divider-text::after {
  margin-left: 1rem;
}

.stat-widget {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
}
.stat-widget .stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  font-size: 1.5rem;
}
.stat-widget .stat-content {
  flex: 1;
}
.stat-widget .stat-content .stat-value {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--bs-body-color);
  line-height: 1.2;
}
.stat-widget .stat-content .stat-label {
  font-size: 0.8375rem;
  color: var(--bs-secondary-color);
  margin-top: 0.25rem;
}
.stat-widget .stat-content .stat-change {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  margin-top: 0.5rem;
}
.stat-widget .stat-content .stat-change.positive {
  color: #34c38f;
}
.stat-widget .stat-content .stat-change.negative {
  color: #f46a6a;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.filter-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--bs-tertiary-bg);
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.filter-group label {
  font-size: 0.8375rem;
  font-weight: 500;
  color: var(--bs-secondary-color);
  white-space: nowrap;
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 767.98px) {
  .toolbar {
    flex-direction: column;
    align-items: stretch;
  }
}

.toolbar-left,
.toolbar-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.toolbar-search {
  position: relative;
}
.toolbar-search .form-control {
  padding-left: 2.5rem;
  min-width: 240px;
}
@media (max-width: 767.98px) {
  .toolbar-search .form-control {
    width: 100%;
  }
}
.toolbar-search .search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--bs-secondary-color);
}

/*
 * Senternal Hosting Control Panel
 * (c) Senternal LLC <http://www.senternal.com>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: var(--bs-card-bg);
  background-clip: border-box;
  border: 1px solid var(--bs-border-color);
  border-radius: 4px;
  box-shadow: none;
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}

.card-header {
  padding: 1rem 1rem;
  margin-bottom: 0;
  background-color: transparent;
  border-bottom: 1px solid var(--bs-border-color);
}
.card-header:first-child {
  border-radius: 3px 3px 0 0;
}
.card-header.d-flex {
  align-items: center;
  justify-content: space-between;
}

.card-title {
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--bs-heading-color, var(--bs-body-color));
}

.card-subtitle {
  margin-top: 0.25rem;
  font-size: 0.8375rem;
  color: var(--bs-secondary-color);
}

.card-body {
  flex: 1 1 auto;
  padding: 1rem 1rem;
}

.card-footer {
  padding: 1rem 1rem;
  background-color: transparent;
  border-top: 1px solid var(--bs-border-color);
}
.card-footer:last-child {
  border-radius: 0 0 3px 3px;
}

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

.card-img-top {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.card-img-bottom {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.card-link {
  color: #556ee6;
  text-decoration: none;
}
.card-link:hover {
  color: #4458b8;
  text-decoration: underline;
}
.card-link + .card-link {
  margin-left: 1rem;
}

.card-header-tabs {
  margin-right: -0.5rem;
  margin-bottom: -1rem;
  margin-left: -0.5rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}

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

.card-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-borderless {
  border: none;
}

.card-flat {
  box-shadow: none;
}

.card-primary .card-header {
  background-color: #556ee6;
  color: #fff;
  border-bottom-color: #4d63cf;
}

.card-secondary .card-header {
  background-color: #74788d;
  color: #fff;
  border-bottom-color: #686c7f;
}

.card-success .card-header {
  background-color: #34c38f;
  color: #000;
  border-bottom-color: #2fb081;
}

.card-info .card-header {
  background-color: #50a5f1;
  color: #000;
  border-bottom-color: #4895d9;
}

.card-warning .card-header {
  background-color: #f1b44c;
  color: #000;
  border-bottom-color: #d9a244;
}

.card-danger .card-header {
  background-color: #f46a6a;
  color: #000;
  border-bottom-color: #dc5f5f;
}

.card-light .card-header {
  background-color: #eff2f7;
  color: #000;
  border-bottom-color: #d7dade;
}

.card-dark .card-header {
  background-color: #343a40;
  color: #fff;
  border-bottom-color: #2f343a;
}

.card-outline-primary {
  border: 1px solid #556ee6;
}
.card-outline-primary .card-header {
  background-color: transparent;
  color: #556ee6;
  border-bottom-color: #556ee6;
}

.card-outline-secondary {
  border: 1px solid #74788d;
}
.card-outline-secondary .card-header {
  background-color: transparent;
  color: #74788d;
  border-bottom-color: #74788d;
}

.card-outline-success {
  border: 1px solid #34c38f;
}
.card-outline-success .card-header {
  background-color: transparent;
  color: #34c38f;
  border-bottom-color: #34c38f;
}

.card-outline-info {
  border: 1px solid #50a5f1;
}
.card-outline-info .card-header {
  background-color: transparent;
  color: #50a5f1;
  border-bottom-color: #50a5f1;
}

.card-outline-warning {
  border: 1px solid #f1b44c;
}
.card-outline-warning .card-header {
  background-color: transparent;
  color: #f1b44c;
  border-bottom-color: #f1b44c;
}

.card-outline-danger {
  border: 1px solid #f46a6a;
}
.card-outline-danger .card-header {
  background-color: transparent;
  color: #f46a6a;
  border-bottom-color: #f46a6a;
}

.card-outline-light {
  border: 1px solid #eff2f7;
}
.card-outline-light .card-header {
  background-color: transparent;
  color: #eff2f7;
  border-bottom-color: #eff2f7;
}

.card-outline-dark {
  border: 1px solid #343a40;
}
.card-outline-dark .card-header {
  background-color: transparent;
  color: #343a40;
  border-bottom-color: #343a40;
}

.card-group {
  display: flex;
  flex-flow: row wrap;
}
.card-group > .card {
  flex: 1 0 0%;
  margin-bottom: 0;
}
.card-group > .card + .card {
  margin-left: 0;
  border-left: 0;
}
.card-group > .card:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.card-group > .card:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.card-stats .card-body {
  padding: 1.25rem;
}
.card-stats .stats-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.card-stats .stats-value {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.card-stats .stats-label {
  font-size: 0.8375rem;
  color: var(--bs-secondary-color);
}
.card-stats .stats-change {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  margin-top: 0.5rem;
}
.card-stats .stats-change-positive {
  color: #34c38f;
}
.card-stats .stats-change-negative {
  color: #f46a6a;
}

[data-bs-theme=dark] .card {
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}
[data-bs-theme=dark] .card-header,
[data-bs-theme=dark] .card-footer {
  border-color: rgba(255, 255, 255, 0.08);
}

/*
 * Senternal Hosting Control Panel
 * (c) Senternal LLC <http://www.senternal.com>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 4px;
  transition-property: color, background-color, border-color, box-shadow;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}
.btn:hover {
  text-decoration: none;
}
.btn:focus {
  outline: 0;
}
.btn:disabled, .btn.disabled {
  pointer-events: none;
  opacity: 0.65;
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.8375rem;
  border-radius: 2px;
}

.btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1.1406rem;
  border-radius: 8px;
}

.btn-primary {
  color: #fff;
  background-color: #556ee6;
  border-color: #556ee6;
}
.btn-primary:hover {
  color: #fff;
  background-color: #485ec4;
  border-color: #4458b8;
}
.btn-primary:focus {
  color: #fff;
  background-color: #485ec4;
  border-color: #4458b8;
  box-shadow: 0 0 0 0.15rem rgba(85, 110, 230, 0.5);
}
.btn-primary:active, .btn-primary.active {
  color: #fff;
  background-color: #4458b8;
  border-color: #4053ad;
}

.btn-secondary {
  color: #fff;
  background-color: #74788d;
  border-color: #74788d;
}
.btn-secondary:hover {
  color: #fff;
  background-color: #636678;
  border-color: #5d6071;
}
.btn-secondary:focus {
  color: #fff;
  background-color: #636678;
  border-color: #5d6071;
  box-shadow: 0 0 0 0.15rem rgba(116, 120, 141, 0.5);
}
.btn-secondary:active, .btn-secondary.active {
  color: #fff;
  background-color: #5d6071;
  border-color: #575a6a;
}

.btn-success {
  color: #fff;
  background-color: #34c38f;
  border-color: #34c38f;
}
.btn-success:hover {
  color: #fff;
  background-color: #2ca67a;
  border-color: #2a9c72;
}
.btn-success:focus {
  color: #fff;
  background-color: #2ca67a;
  border-color: #2a9c72;
  box-shadow: 0 0 0 0.15rem rgba(52, 195, 143, 0.5);
}
.btn-success:active, .btn-success.active {
  color: #fff;
  background-color: #2a9c72;
  border-color: #27926b;
}

.btn-info {
  color: #fff;
  background-color: #50a5f1;
  border-color: #50a5f1;
}
.btn-info:hover {
  color: #fff;
  background-color: #448ccd;
  border-color: #4084c1;
}
.btn-info:focus {
  color: #fff;
  background-color: #448ccd;
  border-color: #4084c1;
  box-shadow: 0 0 0 0.15rem rgba(80, 165, 241, 0.5);
}
.btn-info:active, .btn-info.active {
  color: #fff;
  background-color: #4084c1;
  border-color: #3c7cb5;
}

.btn-warning {
  color: #343a40;
  background-color: #f1b44c;
  border-color: #f1b44c;
}
.btn-warning:hover {
  color: #343a40;
  background-color: #cd9941;
  border-color: #c1903d;
}
.btn-warning:focus {
  color: #343a40;
  background-color: #cd9941;
  border-color: #c1903d;
  box-shadow: 0 0 0 0.15rem rgba(241, 180, 76, 0.5);
}
.btn-warning:active, .btn-warning.active {
  color: #343a40;
  background-color: #c1903d;
  border-color: #b58739;
}

.btn-danger {
  color: #fff;
  background-color: #f46a6a;
  border-color: #f46a6a;
}
.btn-danger:hover {
  color: #fff;
  background-color: #cf5a5a;
  border-color: #c35555;
}
.btn-danger:focus {
  color: #fff;
  background-color: #cf5a5a;
  border-color: #c35555;
  box-shadow: 0 0 0 0.15rem rgba(244, 106, 106, 0.5);
}
.btn-danger:active, .btn-danger.active {
  color: #fff;
  background-color: #c35555;
  border-color: #b75050;
}

.btn-light {
  color: #343a40;
  background-color: #eff2f7;
  border-color: #eff2f7;
}
.btn-light:hover {
  color: #343a40;
  background-color: #cbced2;
  border-color: #bfc2c6;
}
.btn-light:focus {
  color: #343a40;
  background-color: #cbced2;
  border-color: #bfc2c6;
  box-shadow: 0 0 0 0.15rem rgba(239, 242, 247, 0.5);
}
.btn-light:active, .btn-light.active {
  color: #343a40;
  background-color: #bfc2c6;
  border-color: #b3b6b9;
}

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:hover {
  color: #fff;
  background-color: #2c3136;
  border-color: #2a2e33;
}
.btn-dark:focus {
  color: #fff;
  background-color: #2c3136;
  border-color: #2a2e33;
  box-shadow: 0 0 0 0.15rem rgba(52, 58, 64, 0.5);
}
.btn-dark:active, .btn-dark.active {
  color: #fff;
  background-color: #2a2e33;
  border-color: #272c30;
}

.btn-outline-primary {
  color: #556ee6;
  border-color: #556ee6;
  background-color: transparent;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #556ee6;
  border-color: #556ee6;
}
.btn-outline-primary:focus {
  box-shadow: 0 0 0 0.15rem rgba(85, 110, 230, 0.5);
}
.btn-outline-primary:active, .btn-outline-primary.active {
  color: #fff;
  background-color: #556ee6;
  border-color: #556ee6;
}

.btn-outline-secondary {
  color: #74788d;
  border-color: #74788d;
  background-color: transparent;
}
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #74788d;
  border-color: #74788d;
}
.btn-outline-secondary:focus {
  box-shadow: 0 0 0 0.15rem rgba(116, 120, 141, 0.5);
}
.btn-outline-secondary:active, .btn-outline-secondary.active {
  color: #fff;
  background-color: #74788d;
  border-color: #74788d;
}

.btn-outline-success {
  color: #34c38f;
  border-color: #34c38f;
  background-color: transparent;
}
.btn-outline-success:hover {
  color: #000;
  background-color: #34c38f;
  border-color: #34c38f;
}
.btn-outline-success:focus {
  box-shadow: 0 0 0 0.15rem rgba(52, 195, 143, 0.5);
}
.btn-outline-success:active, .btn-outline-success.active {
  color: #000;
  background-color: #34c38f;
  border-color: #34c38f;
}

.btn-outline-info {
  color: #50a5f1;
  border-color: #50a5f1;
  background-color: transparent;
}
.btn-outline-info:hover {
  color: #000;
  background-color: #50a5f1;
  border-color: #50a5f1;
}
.btn-outline-info:focus {
  box-shadow: 0 0 0 0.15rem rgba(80, 165, 241, 0.5);
}
.btn-outline-info:active, .btn-outline-info.active {
  color: #000;
  background-color: #50a5f1;
  border-color: #50a5f1;
}

.btn-outline-warning {
  color: #f1b44c;
  border-color: #f1b44c;
  background-color: transparent;
}
.btn-outline-warning:hover {
  color: #000;
  background-color: #f1b44c;
  border-color: #f1b44c;
}
.btn-outline-warning:focus {
  box-shadow: 0 0 0 0.15rem rgba(241, 180, 76, 0.5);
}
.btn-outline-warning:active, .btn-outline-warning.active {
  color: #000;
  background-color: #f1b44c;
  border-color: #f1b44c;
}

.btn-outline-danger {
  color: #f46a6a;
  border-color: #f46a6a;
  background-color: transparent;
}
.btn-outline-danger:hover {
  color: #000;
  background-color: #f46a6a;
  border-color: #f46a6a;
}
.btn-outline-danger:focus {
  box-shadow: 0 0 0 0.15rem rgba(244, 106, 106, 0.5);
}
.btn-outline-danger:active, .btn-outline-danger.active {
  color: #000;
  background-color: #f46a6a;
  border-color: #f46a6a;
}

.btn-outline-light {
  color: #eff2f7;
  border-color: #eff2f7;
  background-color: transparent;
}
.btn-outline-light:hover {
  color: #000;
  background-color: #eff2f7;
  border-color: #eff2f7;
}
.btn-outline-light:focus {
  box-shadow: 0 0 0 0.15rem rgba(239, 242, 247, 0.5);
}
.btn-outline-light:active, .btn-outline-light.active {
  color: #000;
  background-color: #eff2f7;
  border-color: #eff2f7;
}

.btn-outline-dark {
  color: #343a40;
  border-color: #343a40;
  background-color: transparent;
}
.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:focus {
  box-shadow: 0 0 0 0.15rem rgba(52, 58, 64, 0.5);
}
.btn-outline-dark:active, .btn-outline-dark.active {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-soft-primary {
  color: #556ee6;
  background-color: rgba(85, 110, 230, 0.1);
  border-color: transparent;
}
.btn-soft-primary:hover {
  color: #fff;
  background-color: #556ee6;
  border-color: #556ee6;
}
.btn-soft-primary:focus {
  box-shadow: 0 0 0 0.15rem rgba(85, 110, 230, 0.5);
}
.btn-soft-primary:active, .btn-soft-primary.active {
  color: #fff;
  background-color: #556ee6;
  border-color: #556ee6;
}

.btn-soft-secondary {
  color: #74788d;
  background-color: rgba(116, 120, 141, 0.1);
  border-color: transparent;
}
.btn-soft-secondary:hover {
  color: #fff;
  background-color: #74788d;
  border-color: #74788d;
}
.btn-soft-secondary:focus {
  box-shadow: 0 0 0 0.15rem rgba(116, 120, 141, 0.5);
}
.btn-soft-secondary:active, .btn-soft-secondary.active {
  color: #fff;
  background-color: #74788d;
  border-color: #74788d;
}

.btn-soft-success {
  color: #34c38f;
  background-color: rgba(52, 195, 143, 0.1);
  border-color: transparent;
}
.btn-soft-success:hover {
  color: #000;
  background-color: #34c38f;
  border-color: #34c38f;
}
.btn-soft-success:focus {
  box-shadow: 0 0 0 0.15rem rgba(52, 195, 143, 0.5);
}
.btn-soft-success:active, .btn-soft-success.active {
  color: #000;
  background-color: #34c38f;
  border-color: #34c38f;
}

.btn-soft-info {
  color: #50a5f1;
  background-color: rgba(80, 165, 241, 0.1);
  border-color: transparent;
}
.btn-soft-info:hover {
  color: #000;
  background-color: #50a5f1;
  border-color: #50a5f1;
}
.btn-soft-info:focus {
  box-shadow: 0 0 0 0.15rem rgba(80, 165, 241, 0.5);
}
.btn-soft-info:active, .btn-soft-info.active {
  color: #000;
  background-color: #50a5f1;
  border-color: #50a5f1;
}

.btn-soft-warning {
  color: #f1b44c;
  background-color: rgba(241, 180, 76, 0.1);
  border-color: transparent;
}
.btn-soft-warning:hover {
  color: #000;
  background-color: #f1b44c;
  border-color: #f1b44c;
}
.btn-soft-warning:focus {
  box-shadow: 0 0 0 0.15rem rgba(241, 180, 76, 0.5);
}
.btn-soft-warning:active, .btn-soft-warning.active {
  color: #000;
  background-color: #f1b44c;
  border-color: #f1b44c;
}

.btn-soft-danger {
  color: #f46a6a;
  background-color: rgba(244, 106, 106, 0.1);
  border-color: transparent;
}
.btn-soft-danger:hover {
  color: #000;
  background-color: #f46a6a;
  border-color: #f46a6a;
}
.btn-soft-danger:focus {
  box-shadow: 0 0 0 0.15rem rgba(244, 106, 106, 0.5);
}
.btn-soft-danger:active, .btn-soft-danger.active {
  color: #000;
  background-color: #f46a6a;
  border-color: #f46a6a;
}

.btn-soft-light {
  color: #eff2f7;
  background-color: rgba(239, 242, 247, 0.1);
  border-color: transparent;
}
.btn-soft-light:hover {
  color: #000;
  background-color: #eff2f7;
  border-color: #eff2f7;
}
.btn-soft-light:focus {
  box-shadow: 0 0 0 0.15rem rgba(239, 242, 247, 0.5);
}
.btn-soft-light:active, .btn-soft-light.active {
  color: #000;
  background-color: #eff2f7;
  border-color: #eff2f7;
}

.btn-soft-dark {
  color: #343a40;
  background-color: rgba(52, 58, 64, 0.1);
  border-color: transparent;
}
.btn-soft-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-soft-dark:focus {
  box-shadow: 0 0 0 0.15rem rgba(52, 58, 64, 0.5);
}
.btn-soft-dark:active, .btn-soft-dark.active {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-link {
  color: #556ee6;
  text-decoration: none;
}
.btn-link:hover {
  color: #4458b8;
  text-decoration: underline;
}
.btn-link:focus {
  text-decoration: underline;
}
.btn-link:disabled, .btn-link.disabled {
  color: var(--bs-secondary-color);
}

.btn-icon {
  padding: 0;
  width: 2.5rem;
  height: 2.5rem;
}
.btn-icon.btn-sm {
  width: 2rem;
  height: 2rem;
}
.btn-icon.btn-lg {
  width: 3rem;
  height: 3rem;
}

.btn-rounded {
  border-radius: 30px;
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn i, .btn .ph {
  font-size: 1.1em;
  line-height: 1;
}

.btn-group {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn {
  position: relative;
  flex: 1 1 auto;
}
.btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active {
  z-index: 1;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  margin-left: -1px;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.btn-group-vertical > .btn {
  width: 100%;
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:not(:first-child) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  margin-top: -1px;
}

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em;
  color: currentColor;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 4px;
  opacity: 0.5;
  transition-property: opacity;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}
.btn-close:hover {
  opacity: 0.75;
}
.btn-close:focus {
  outline: 0;
  box-shadow: 0 0 0 0.15rem rgba(85, 110, 230, 0.25);
  opacity: 1;
}
.btn-close:disabled, .btn-close.disabled {
  pointer-events: none;
  user-select: none;
  opacity: 0.25;
}

[data-bs-theme=dark] .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.btn-loading {
  position: relative;
  pointer-events: none;
}
.btn-loading .btn-text {
  opacity: 0;
}
.btn-loading::after {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spinner-border 0.75s linear infinite;
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}
.waves-effect {
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}
.waves-effect .waves-ripple {
  position: absolute;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin-top: -50px;
  margin-left: -50px;
  opacity: 0;
  background: rgba(0, 0, 0, 0.2);
  animation: waves-ripple 0.65s ease-out;
  transition: opacity 0.65s;
  pointer-events: none;
}
.waves-effect.waves-light .waves-ripple {
  background: rgba(255, 255, 255, 0.4);
}

@keyframes waves-ripple {
  0% {
    transform: scale(0);
    opacity: 0.5;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}
/*
 * Senternal Hosting Control Panel
 * (c) Senternal LLC <http://www.senternal.com>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */
.form-control {
  display: block;
  width: 100%;
  max-width: 500px;
  padding: 0.5rem 0.75rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  background-color: var(--bs-secondary-bg);
  background-clip: padding-box;
  border: 1px solid var(--bs-border-color-translucent, #ced4da);
  border-radius: 4px;
  transition-property: border-color, box-shadow;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}
.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-secondary-bg);
  border-color: rgba(73, 80, 87, 0.2);
  outline: 0;
  box-shadow: 0 0 0 0.15rem rgba(85, 110, 230, 0.25);
}
.form-control::placeholder {
  color: var(--bs-secondary-color);
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: var(--bs-tertiary-bg);
  opacity: 1;
}

.form-control-sm,
.form-select-sm {
  height: calc(1.5em + 0.5rem + 9px);
  padding: 0.25rem 0.5rem;
  font-size: 0.8375rem;
  border-radius: 2px;
}

.input-group-sm > .form-control,
.input-group-sm > .input-group-text {
  height: calc(1.5em + 0.5rem + 9px);
}

.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.1406rem;
  border-radius: 8px;
}

.form-control-xs,
.form-select-xs {
  max-width: 120px;
}

.form-control-sm-width,
.form-select-sm-width {
  max-width: 200px;
}

.form-control-md-width,
.form-select-md-width {
  max-width: 400px;
}

.form-control-lg-width,
.form-select-lg-width {
  max-width: 600px;
}

.form-control-full,
.form-select-full {
  max-width: none;
}

textarea.form-control {
  min-height: calc(1.5em + 0.94rem + 2px);
}

.form-select {
  display: block;
  width: 100%;
  max-width: 500px;
  padding: 0.5rem 2.25rem 0.5rem 0.75rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  background-color: var(--bs-secondary-bg);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid var(--bs-border-color-translucent, #ced4da);
  border-radius: 4px;
  appearance: none;
  transition-property: border-color, box-shadow;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}
.form-select:focus {
  border-color: rgba(73, 80, 87, 0.2);
  outline: 0;
  box-shadow: 0 0 0 0.15rem rgba(85, 110, 230, 0.25);
}
.form-select:disabled {
  background-color: var(--bs-tertiary-bg);
}
.form-select[multiple], .form-select[size]:not([size="1"]) {
  padding-right: 0.75rem;
  background-image: none;
}

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

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

.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: var(--bs-secondary-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid var(--bs-border-color-translucent, #ced4da);
  appearance: none;
  transition-property: background-color, border-color, box-shadow;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}
.form-check-input[type=checkbox] {
  border-radius: 2px;
}
.form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check-input:active {
  filter: brightness(90%);
}
.form-check-input:focus {
  border-color: rgba(73, 80, 87, 0.2);
  outline: 0;
  box-shadow: 0 0 0 0.15rem rgba(85, 110, 230, 0.25);
}
.form-check-input:checked {
  background-color: #556ee6;
  border-color: #556ee6;
}
.form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
.form-check-input:checked[type=radio] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}

.form-check-label {
  color: var(--bs-body-color);
}

.form-switch {
  padding-left: 2.5em;
}
.form-switch .form-check-input {
  width: 2em;
  margin-left: -2.5em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba(0, 0, 0, 0.25)'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 2em;
  transition-property: background-position 0.15s ease-in-out;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}
.form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='#556ee6'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.form-label {
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--bs-body-color);
}

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

.form-text {
  margin-top: 0.25rem;
  font-size: 0.8375rem;
  color: var(--bs-secondary-color);
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
  max-width: 500px;
}
.input-group > .form-control,
.input-group > .form-select {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  max-width: none;
}
.input-group > .form-control:focus,
.input-group > .form-select:focus {
  z-index: 3;
}

.input-group-xs {
  max-width: 120px;
}

.input-group-sm-width {
  max-width: 200px;
}

.input-group-md-width {
  max-width: 400px;
}

.input-group-lg-width {
  max-width: 600px;
}

.input-group-full {
  max-width: none;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  text-align: center;
  white-space: nowrap;
  background-color: var(--bs-tertiary-bg);
  border: 1px solid var(--bs-border-color-translucent, #ced4da);
  border-radius: 4px;
}

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.was-validated .form-control:valid,
.form-control.is-valid {
  border-color: #34c38f;
  padding-right: calc(1.5em + 0.94rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2334c38f' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.235rem) center;
  background-size: calc(0.75em + 0.47rem) calc(0.75em + 0.47rem);
}
.was-validated .form-control:valid:focus,
.form-control.is-valid:focus {
  border-color: #34c38f;
  box-shadow: 0 0 0 0.15rem rgba(52, 195, 143, 0.25);
}

.was-validated .form-control:invalid,
.form-control.is-invalid {
  border-color: #f46a6a;
  padding-right: calc(1.5em + 0.94rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23f46a6a'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23f46a6a' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.235rem) center;
  background-size: calc(0.75em + 0.47rem) calc(0.75em + 0.47rem);
}
.was-validated .form-control:invalid:focus,
.form-control.is-invalid:focus {
  border-color: #f46a6a;
  box-shadow: 0 0 0 0.15rem rgba(244, 106, 106, 0.25);
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.8375rem;
  color: #34c38f;
}

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

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

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

.form-floating {
  position: relative;
}
.form-floating > .form-control,
.form-floating > .form-select {
  height: calc(3.5rem + 2px);
  padding: 1rem 0.75rem;
}
.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem 0.75rem;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition-property: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}
.form-floating > .form-control:focus,
.form-floating > .form-control:not(:placeholder-shown),
.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

[data-bs-theme=dark] .form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23a6b0cf' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}
[data-bs-theme=dark] .form-switch .form-check-input {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba(255, 255, 255, 0.25)'/%3e%3c/svg%3e");
}
[data-bs-theme=dark] .form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='#556ee6'/%3e%3c/svg%3e");
}

.form-control.is-validating {
  border-color: var(--bs-border-color);
  background-image: none;
}

.unique-validator-feedback {
  margin-top: 0.25rem;
  font-size: 0.8375rem;
}
.unique-validator-feedback .ph-spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/*
 * Senternal Hosting Control Panel
 * (c) Senternal LLC <http://www.senternal.com>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */
.table {
  --bs-table-bg: transparent;
  --bs-table-striped-color: var(--bs-body-color);
  --bs-table-striped-bg: var(--bs-tertiary-bg);
  --bs-table-hover-color: var(--bs-body-color);
  --bs-table-hover-bg: var(--bs-tertiary-bg);
  width: 100%;
  margin-bottom: 1rem;
  color: var(--bs-body-color);
  vertical-align: top;
  border-color: var(--bs-border-color);
}
.table > :not(caption) > * > * {
  padding: 0.75rem 0.75rem;
  background-color: var(--bs-table-bg);
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg, transparent);
}
.table > tbody {
  vertical-align: inherit;
}
.table > thead {
  vertical-align: bottom;
  background-color: var(--bs-table-head-bg, #f8f9fa);
}
.table > thead th {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--bs-secondary-color);
}

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

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

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

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

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

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

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

.table-primary {
  --bs-table-bg: rgba(85, 110, 230, 0.1);
  --bs-table-striped-bg: rgba(85, 110, 230, 0.15);
  --bs-table-hover-bg: rgba(85, 110, 230, 0.2);
  --bs-table-border-color: rgba(85, 110, 230, 0.2);
}

.table-secondary {
  --bs-table-bg: rgba(116, 120, 141, 0.1);
  --bs-table-striped-bg: rgba(116, 120, 141, 0.15);
  --bs-table-hover-bg: rgba(116, 120, 141, 0.2);
  --bs-table-border-color: rgba(116, 120, 141, 0.2);
}

.table-success {
  --bs-table-bg: rgba(52, 195, 143, 0.1);
  --bs-table-striped-bg: rgba(52, 195, 143, 0.15);
  --bs-table-hover-bg: rgba(52, 195, 143, 0.2);
  --bs-table-border-color: rgba(52, 195, 143, 0.2);
}

.table-info {
  --bs-table-bg: rgba(80, 165, 241, 0.1);
  --bs-table-striped-bg: rgba(80, 165, 241, 0.15);
  --bs-table-hover-bg: rgba(80, 165, 241, 0.2);
  --bs-table-border-color: rgba(80, 165, 241, 0.2);
}

.table-warning {
  --bs-table-bg: rgba(241, 180, 76, 0.1);
  --bs-table-striped-bg: rgba(241, 180, 76, 0.15);
  --bs-table-hover-bg: rgba(241, 180, 76, 0.2);
  --bs-table-border-color: rgba(241, 180, 76, 0.2);
}

.table-danger {
  --bs-table-bg: rgba(244, 106, 106, 0.1);
  --bs-table-striped-bg: rgba(244, 106, 106, 0.15);
  --bs-table-hover-bg: rgba(244, 106, 106, 0.2);
  --bs-table-border-color: rgba(244, 106, 106, 0.2);
}

.table-light {
  --bs-table-bg: rgba(239, 242, 247, 0.1);
  --bs-table-striped-bg: rgba(239, 242, 247, 0.15);
  --bs-table-hover-bg: rgba(239, 242, 247, 0.2);
  --bs-table-border-color: rgba(239, 242, 247, 0.2);
}

.table-dark {
  --bs-table-bg: rgba(52, 58, 64, 0.1);
  --bs-table-striped-bg: rgba(52, 58, 64, 0.15);
  --bs-table-hover-bg: rgba(52, 58, 64, 0.2);
  --bs-table-border-color: rgba(52, 58, 64, 0.2);
}

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

@media (max-width: 575.98px) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 767.98px) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 991.98px) {
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 1199.98px) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 1399.98px) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.table-nowrap th, .table-nowrap td {
  white-space: nowrap;
}

.table-card {
  margin-bottom: 0;
}
.table-card > :not(caption) > * > *:first-child {
  padding-left: 1rem;
}
.table-card > :not(caption) > * > *:last-child {
  padding-right: 1rem;
}

.table-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.table-empty {
  text-align: center;
  padding: 3rem;
  color: var(--bs-secondary-color);
}
.table-empty i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

[data-bs-theme=dark] .table > thead {
  background-color: #32394e;
}
[data-bs-theme=dark] .table-light {
  --bs-table-bg: #32394e;
  --bs-table-border-color: #32394e;
}

/*
 * Senternal Hosting Control Panel
 * (c) Senternal LLC <http://www.senternal.com>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */
.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 4px;
}

.badge-pill, .rounded-pill {
  border-radius: 10rem;
}

.badge-primary, .bg-primary {
  color: #fff;
  background-color: #556ee6;
}

.badge-soft-primary {
  color: #556ee6;
  background-color: rgba(85, 110, 230, 0.18);
}

.badge-secondary, .bg-secondary {
  color: #fff;
  background-color: #74788d;
}

.badge-soft-secondary {
  color: #74788d;
  background-color: rgba(116, 120, 141, 0.18);
}

.badge-success, .bg-success {
  color: #000;
  background-color: #34c38f;
}

.badge-soft-success {
  color: #34c38f;
  background-color: rgba(52, 195, 143, 0.18);
}

.badge-info, .bg-info {
  color: #000;
  background-color: #50a5f1;
}

.badge-soft-info {
  color: #50a5f1;
  background-color: rgba(80, 165, 241, 0.18);
}

.badge-warning, .bg-warning {
  color: #000;
  background-color: #f1b44c;
}

.badge-soft-warning {
  color: #f1b44c;
  background-color: rgba(241, 180, 76, 0.18);
}

.badge-danger, .bg-danger {
  color: #000;
  background-color: #f46a6a;
}

.badge-soft-danger {
  color: #f46a6a;
  background-color: rgba(244, 106, 106, 0.18);
}

.badge-light, .bg-light {
  color: #000;
  background-color: #eff2f7;
}

.badge-soft-light {
  color: #eff2f7;
  background-color: rgba(239, 242, 247, 0.18);
}

.badge-dark, .bg-dark {
  color: #fff;
  background-color: #343a40;
}

.badge-soft-dark {
  color: #343a40;
  background-color: rgba(52, 58, 64, 0.18);
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/*
 * Senternal Hosting Control Panel
 * (c) Senternal LLC <http://www.senternal.com>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */
.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 4px;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 600;
}

.alert-dismissible {
  padding-right: 3rem;
}

.alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 1rem;
}

.alert-primary {
  color: #33428a;
  background-color: #dde2fa;
  border-color: #bbc5f5;
}
.alert-primary .alert-link {
  color: #222c5c;
}

.alert-secondary {
  color: #464855;
  background-color: #e3e4e8;
  border-color: #c7c9d1;
}
.alert-secondary .alert-link {
  color: #2e3038;
}

.alert-success {
  color: #1f7556;
  background-color: #d6f3e9;
  border-color: #aee7d2;
}
.alert-success .alert-link {
  color: #154e39;
}

.alert-info {
  color: #306391;
  background-color: #dcedfc;
  border-color: #b9dbf9;
}
.alert-info .alert-link {
  color: #204260;
}

.alert-warning {
  color: #916c2e;
  background-color: #fcf0db;
  border-color: #f9e1b7;
}
.alert-warning .alert-link {
  color: #60481e;
}

.alert-danger {
  color: #924040;
  background-color: #fde1e1;
  border-color: #fbc3c3;
}
.alert-danger .alert-link {
  color: #622a2a;
}

.alert-light {
  color: #8f9194;
  background-color: #fcfcfd;
  border-color: #f9fafc;
}
.alert-light .alert-link {
  color: #606163;
}

.alert-dark {
  color: #1f2326;
  background-color: #d6d8d9;
  border-color: #aeb0b3;
}
.alert-dark .alert-link {
  color: #15171a;
}

.alert-soft-primary {
  color: #556ee6;
  background-color: rgba(85, 110, 230, 0.1);
  border-color: transparent;
}

.alert-soft-secondary {
  color: #74788d;
  background-color: rgba(116, 120, 141, 0.1);
  border-color: transparent;
}

.alert-soft-success {
  color: #34c38f;
  background-color: rgba(52, 195, 143, 0.1);
  border-color: transparent;
}

.alert-soft-info {
  color: #50a5f1;
  background-color: rgba(80, 165, 241, 0.1);
  border-color: transparent;
}

.alert-soft-warning {
  color: #f1b44c;
  background-color: rgba(241, 180, 76, 0.1);
  border-color: transparent;
}

.alert-soft-danger {
  color: #f46a6a;
  background-color: rgba(244, 106, 106, 0.1);
  border-color: transparent;
}

.alert-soft-light {
  color: #eff2f7;
  background-color: rgba(239, 242, 247, 0.1);
  border-color: transparent;
}

.alert-soft-dark {
  color: #343a40;
  background-color: rgba(52, 58, 64, 0.1);
  border-color: transparent;
}

/*
 * Senternal Hosting Control Panel
 * (c) Senternal LLC <http://www.senternal.com>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  transform: translateY(-50px);
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}

.modal.show .modal-dialog {
  transform: none;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-dialog-scrollable {
  height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: var(--bs-secondary-bg);
  background-clip: padding-box;
  border: 1px solid var(--bs-border-color);
  border-radius: 8px;
  outline: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid var(--bs-border-color);
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}

.modal-header .btn-close {
  padding: 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
  font-weight: 600;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid var(--bs-border-color);
  border-bottom-right-radius: 7px;
  border-bottom-left-radius: 7px;
}

.modal-footer > * {
  margin: 0.25rem;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg, .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}

.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}

/*
 * Senternal Hosting Control Panel
 * (c) Senternal LLC <http://www.senternal.com>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */
.dropdown, .dropup, .dropend, .dropstart {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 0.9375rem;
  color: var(--bs-body-color);
  text-align: left;
  list-style: none;
  background-color: var(--bs-secondary-bg);
  background-clip: padding-box;
  border: 0 solid var(--bs-border-color);
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

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

.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: 0.125rem;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.35rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: var(--bs-body-color);
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  transition-property: color, background-color;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}

.dropdown-item:hover, .dropdown-item:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-tertiary-bg);
}

.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  background-color: #556ee6;
}

.dropdown-item.disabled, .dropdown-item:disabled {
  color: var(--bs-secondary-color);
  pointer-events: none;
  background-color: transparent;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid var(--bs-border-color);
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 0.8375rem;
  color: var(--bs-secondary-color);
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.35rem 1.5rem;
  color: var(--bs-body-color);
}

.dropup .dropdown-toggle::after {
  border-top: 0;
  border-bottom: 0.3em solid;
}

.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}

.dropend .dropdown-toggle::after {
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}

.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}

.dropstart .dropdown-toggle::after {
  display: none;
}

.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}

.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}

/*
 * Senternal Hosting Control Panel
 * (c) Senternal LLC <http://www.senternal.com>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */
.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #556ee6;
  text-decoration: none;
  transition-property: color, background-color, border-color;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-link:hover, .nav-link:focus {
  color: #4458b8;
}

.nav-link.disabled {
  color: var(--bs-secondary-color);
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid var(--bs-border-color);
}

.nav-tabs .nav-link {
  margin-bottom: -1px;
  background: none;
  border: 1px solid transparent;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: var(--bs-tertiary-bg) var(--bs-tertiary-bg) var(--bs-border-color);
  isolation: isolate;
}

.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
  color: var(--bs-body-color);
  background-color: var(--bs-secondary-bg);
  border-color: var(--bs-border-color) var(--bs-border-color) var(--bs-secondary-bg);
}

.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 4px;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #556ee6;
}

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

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

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

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

.nav-underline {
  gap: 1rem;
  border-bottom: 1px solid var(--bs-border-color);
}

.nav-underline .nav-link {
  padding-right: 0;
  padding-left: 0;
  border-bottom: 2px solid transparent;
}

.nav-underline .nav-link:hover, .nav-underline .nav-link:focus {
  border-bottom-color: currentColor;
}

.nav-underline .nav-link.active, .nav-underline .show > .nav-link {
  font-weight: 600;
  color: var(--bs-body-color);
  border-bottom-color: currentColor;
}

/*
 * Senternal Hosting Control Panel
 * (c) Senternal LLC <http://www.senternal.com>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */
.accordion {
  --bs-accordion-color: var(--bs-body-color);
  --bs-accordion-bg: var(--bs-secondary-bg);
  --bs-accordion-border-color: var(--bs-border-color);
  --bs-accordion-border-width: 1px;
  --bs-accordion-border-radius: 4px;
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-active-color: #556ee6;
  --bs-accordion-active-bg: rgba(85, 110, 230, 0.1);
}

.accordion-item {
  color: var(--bs-accordion-color);
  background-color: var(--bs-accordion-bg);
  border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}

.accordion-item:first-of-type {
  border-top-left-radius: var(--bs-accordion-border-radius);
  border-top-right-radius: var(--bs-accordion-border-radius);
}

.accordion-item:last-of-type {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}

.accordion-item:not(:first-of-type) {
  border-top: 0;
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--bs-accordion-color);
  text-align: left;
  background-color: var(--bs-accordion-bg);
  border: 0;
  overflow-anchor: none;
  transition-property: color, background-color, border-color, box-shadow;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}

.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: var(--bs-accordion-active-bg);
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23556ee6'%3e%3cpath 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-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}

.accordion-button::after {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23495057'%3e%3cpath 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-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 16px;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}

.accordion-button:hover {
  z-index: 2;
}

.accordion-button:focus {
  z-index: 3;
  border-color: #556ee6;
  outline: 0;
  box-shadow: 0 0 0 0.15rem rgba(85, 110, 230, 0.25);
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-body {
  padding: 1rem 1.25rem;
}

.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

.accordion-flush .accordion-item:first-child {
  border-top: 0;
}

.accordion-flush .accordion-item:last-child {
  border-bottom: 0;
}

/*
 * Senternal Hosting Control Panel
 * (c) Senternal LLC <http://www.senternal.com>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */
.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.9375rem;
  color: #556ee6;
  text-decoration: none;
  background-color: var(--bs-secondary-bg);
  border: 1px solid var(--bs-border-color);
  transition-property: color, background-color, border-color, box-shadow;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}

.page-link:hover {
  z-index: 2;
  color: #4458b8;
  background-color: var(--bs-tertiary-bg);
  border-color: var(--bs-border-color);
}

.page-link:focus {
  z-index: 3;
  color: #4458b8;
  background-color: var(--bs-tertiary-bg);
  outline: 0;
  box-shadow: 0 0 0 0.15rem rgba(85, 110, 230, 0.25);
}

.page-item:not(:first-child) .page-link {
  margin-left: -1px;
}

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #556ee6;
  border-color: #556ee6;
}

.page-item.disabled .page-link {
  color: var(--bs-secondary-color);
  pointer-events: none;
  background-color: var(--bs-secondary-bg);
  border-color: var(--bs-border-color);
}

.page-item:first-child .page-link {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.page-item:last-child .page-link {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.1406rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.8375rem;
}

.pagination-rounded .page-link {
  border-radius: 30px !important;
  margin: 0 3px;
}

/*
 * Senternal Hosting Control Panel
 * (c) Senternal LLC <http://www.senternal.com>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */
.avatar {
  position: relative;
  display: inline-block;
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #556ee6;
  color: #fff;
  font-weight: 500;
}

.avatar-xs {
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1.5rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
}

.avatar-sm {
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.avatar-md {
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.avatar-lg {
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.avatar-xl {
  width: 4rem;
  height: 4rem;
  line-height: 4rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.avatar-group {
  display: flex;
  flex-wrap: wrap;
}

.avatar-group .avatar {
  margin-left: -0.75rem;
  border: 2px solid var(--bs-secondary-bg);
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}

.avatar-group .avatar:first-child {
  margin-left: 0;
}

.avatar-group .avatar:hover {
  z-index: 1;
  transform: translateY(-2px);
}

.avatar-primary .avatar-title {
  background-color: #556ee6;
  color: #fff;
}

.avatar-soft-primary .avatar-title {
  background-color: rgba(85, 110, 230, 0.18);
  color: #556ee6;
}

.avatar-secondary .avatar-title {
  background-color: #74788d;
  color: #fff;
}

.avatar-soft-secondary .avatar-title {
  background-color: rgba(116, 120, 141, 0.18);
  color: #74788d;
}

.avatar-success .avatar-title {
  background-color: #34c38f;
  color: #000;
}

.avatar-soft-success .avatar-title {
  background-color: rgba(52, 195, 143, 0.18);
  color: #34c38f;
}

.avatar-info .avatar-title {
  background-color: #50a5f1;
  color: #000;
}

.avatar-soft-info .avatar-title {
  background-color: rgba(80, 165, 241, 0.18);
  color: #50a5f1;
}

.avatar-warning .avatar-title {
  background-color: #f1b44c;
  color: #000;
}

.avatar-soft-warning .avatar-title {
  background-color: rgba(241, 180, 76, 0.18);
  color: #f1b44c;
}

.avatar-danger .avatar-title {
  background-color: #f46a6a;
  color: #000;
}

.avatar-soft-danger .avatar-title {
  background-color: rgba(244, 106, 106, 0.18);
  color: #f46a6a;
}

.avatar-light .avatar-title {
  background-color: #eff2f7;
  color: #000;
}

.avatar-soft-light .avatar-title {
  background-color: rgba(239, 242, 247, 0.18);
  color: #eff2f7;
}

.avatar-dark .avatar-title {
  background-color: #343a40;
  color: #fff;
}

.avatar-soft-dark .avatar-title {
  background-color: rgba(52, 58, 64, 0.18);
  color: #343a40;
}

/*
 * Senternal Hosting Control Panel
 * (c) Senternal LLC <http://www.senternal.com>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.8375rem;
  list-style: none;
  background-color: transparent;
  border-radius: 4px;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: var(--bs-secondary-color);
  content: "/";
}

.breadcrumb-item a {
  color: #556ee6;
  text-decoration: none;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: var(--bs-secondary-color);
}

/*
 * Senternal Hosting Control Panel
 * (c) Senternal LLC <http://www.senternal.com>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */
.progress {
  display: flex;
  height: 0.625rem;
  overflow: hidden;
  font-size: 0.703125rem;
  background-color: var(--bs-tertiary-bg);
  border: 1px solid var(--bs-border-color);
  border-radius: 4px;
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #556ee6;
  transition-property: width 0.6s ease;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 0.625rem 0.625rem;
}

.progress-bar-animated {
  animation: progress-bar-stripes 1s linear infinite;
}

@keyframes progress-bar-stripes {
  0% {
    background-position-x: 0.625rem;
  }
}
.progress-stacked {
  display: flex;
  overflow: hidden;
}

.progress-sm {
  height: 5px;
}

.progress-md {
  height: 8px;
}

.progress-lg {
  height: 12px;
}

.progress-xl {
  height: 16px;
}

.progress-bar-primary, .bg-primary.progress-bar {
  background-color: #556ee6;
}

.progress-bar-secondary, .bg-secondary.progress-bar {
  background-color: #74788d;
}

.progress-bar-success, .bg-success.progress-bar {
  background-color: #34c38f;
}

.progress-bar-info, .bg-info.progress-bar {
  background-color: #50a5f1;
}

.progress-bar-warning, .bg-warning.progress-bar {
  background-color: #f1b44c;
}

.progress-bar-danger, .bg-danger.progress-bar {
  background-color: #f46a6a;
}

.progress-bar-light, .bg-light.progress-bar {
  background-color: #eff2f7;
}

.progress-bar-dark, .bg-dark.progress-bar {
  background-color: #343a40;
}

/*
 * Senternal Hosting Control Panel
 * (c) Senternal LLC <http://www.senternal.com>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */
#sidebar-menu {
  position: relative;
  overflow: hidden;
  height: calc(100vh - var(--theme-header-height, 70px));
  padding: 0;
}

.sliding-menu-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--theme-sidebar-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 0;
}
.sliding-menu-header:empty, .sliding-menu-header:has(.d-none:only-child) {
  border-bottom: none;
}

.sliding-menu-back {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  background: none;
  border: none;
  color: var(--theme-sidebar-color);
  font-size: 0.875rem;
  cursor: pointer;
  transition: background-color 0.15s;
}
.sliding-menu-back:hover {
  background: rgba(255, 255, 255, 0.05);
}
.sliding-menu-back i {
  font-size: 1rem;
}

.sliding-menu-panel {
  position: absolute;
  inset: 0;
  top: 0;
  margin: 0;
  padding: 1rem 0;
  list-style: none;
  overflow-y: auto;
  background: var(--theme-sidebar-bg);
  transform: translateX(0);
  transition: transform var(--menu-duration, 250ms) cubic-bezier(0.4, 0, 0.2, 1), opacity var(--menu-duration, 250ms) cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}
.sliding-menu-panel::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.sliding-menu-panel::-webkit-scrollbar-track {
  background: transparent;
}
.sliding-menu-panel::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
}
.sliding-menu-panel::-webkit-scrollbar-thumb:hover {
  background: rgba(230, 230, 230, 0.2);
}

.sliding-menu-subpanel {
  z-index: 2;
  top: 3rem;
}
.sliding-menu-subpanel.panel-hidden {
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
}
.sliding-menu-subpanel.panel-active {
  transform: translateX(0);
  opacity: 1;
}

.sliding-menu-panel:not(.sliding-menu-subpanel).panel-hidden {
  transform: translateX(-30%);
  opacity: 0.3;
  pointer-events: none;
}

.no-transition .sliding-menu-panel {
  transition: none !important;
}

.sliding-menu-panel a {
  display: flex;
  align-items: center;
  padding: 0.625rem 1.5rem;
  color: var(--theme-sidebar-color);
  text-decoration: none;
  transition: color 0.15s, background-color 0.15s;
}
.sliding-menu-panel a:hover {
  color: var(--theme-sidebar-hover-color);
  background: rgba(255, 255, 255, 0.05);
}
.sliding-menu-panel a i:first-child {
  min-width: 1.75rem;
  font-size: 1.1rem;
  color: var(--theme-sidebar-icon-color);
}
.sliding-menu-panel a .menu-arrow {
  margin-left: auto;
  opacity: 0.5;
  font-size: 0.75rem;
}

.sliding-menu-panel .menu-title {
  padding: 0.75rem 1.5rem 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--theme-sidebar-color);
  opacity: 0.5;
}

.menu-active {
  color: var(--theme-sidebar-active-color) !important;
}
.menu-active i:first-child {
  color: var(--theme-sidebar-active-color) !important;
}

.menu-parent-active i:first-child {
  color: var(--theme-sidebar-active-color);
}

.sliding-menu-subpanel a {
  padding-left: 1.25rem;
  font-size: 0.875rem;
}
.sliding-menu-subpanel a::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 0.75rem;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.4;
  flex-shrink: 0;
}
.sliding-menu-subpanel a.menu-active::before {
  opacity: 1;
}

.submenu-header {
  display: none;
}

.menu-collapsed .sliding-menu-header {
  display: none;
}
.menu-collapsed .sliding-menu-panel:not(.sliding-menu-subpanel) {
  overflow: visible;
}
.menu-collapsed .sliding-menu-panel:not(.sliding-menu-subpanel) a {
  justify-content: center;
  padding: 0.75rem;
  position: relative;
}
.menu-collapsed .sliding-menu-panel:not(.sliding-menu-subpanel) a span,
.menu-collapsed .sliding-menu-panel:not(.sliding-menu-subpanel) a .menu-arrow {
  display: none;
}
.menu-collapsed .sliding-menu-panel:not(.sliding-menu-subpanel) a i:first-child {
  min-width: auto;
  font-size: 1.25rem;
}
.menu-collapsed .sliding-menu-panel:not(.sliding-menu-subpanel) a[data-sliding-menu-target=leafItem]::after {
  content: attr(data-tooltip);
  position: absolute;
  left: calc(100% + 0.5rem);
  top: 50%;
  transform: translateY(-50%);
  padding: 0.375rem 0.75rem;
  background: var(--theme-sidebar-bg);
  color: var(--theme-sidebar-color);
  font-size: 0.8125rem;
  white-space: nowrap;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s, visibility 0.15s;
  z-index: 1070;
}
.menu-collapsed .sliding-menu-panel:not(.sliding-menu-subpanel) a[data-sliding-menu-target=leafItem]:hover::after {
  opacity: 1;
  visibility: visible;
}
.menu-collapsed .sliding-menu-panel .menu-title {
  display: none;
}
.menu-collapsed .sliding-menu-subpanel {
  position: fixed;
  inset: auto;
  left: var(--theme-sidebar-collapsed-width, 70px);
  width: 220px;
  height: auto;
  max-height: calc(100vh - 2rem);
  padding: 0.5rem 0;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transform: none !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s, visibility 0.15s;
}
.menu-collapsed .sliding-menu-subpanel.hover-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.menu-collapsed .sliding-menu-subpanel a {
  padding: 0.5rem 1rem;
  white-space: nowrap;
}
.menu-collapsed .sliding-menu-subpanel a::before {
  display: none;
}
.menu-collapsed .sliding-menu-subpanel .submenu-header {
  display: block;
  padding: 0.5rem 1rem 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--theme-sidebar-active-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  #sidebar-menu .sliding-menu-header {
    display: none;
  }
  #sidebar-menu .sliding-menu-panel:not(.sliding-menu-subpanel) {
    overflow: visible;
  }
  #sidebar-menu .sliding-menu-panel:not(.sliding-menu-subpanel) a {
    justify-content: center;
    padding: 0.75rem;
    position: relative;
  }
  #sidebar-menu .sliding-menu-panel:not(.sliding-menu-subpanel) a span,
  #sidebar-menu .sliding-menu-panel:not(.sliding-menu-subpanel) a .menu-arrow {
    display: none;
  }
  #sidebar-menu .sliding-menu-panel:not(.sliding-menu-subpanel) a i:first-child {
    min-width: auto;
    font-size: 1.25rem;
  }
  #sidebar-menu .sliding-menu-panel:not(.sliding-menu-subpanel) a[data-sliding-menu-target=leafItem]::after {
    content: attr(data-tooltip);
    position: absolute;
    left: calc(100% + 0.5rem);
    top: 50%;
    transform: translateY(-50%);
    padding: 0.375rem 0.75rem;
    background: var(--theme-sidebar-bg);
    color: var(--theme-sidebar-color);
    font-size: 0.8125rem;
    white-space: nowrap;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.15s, visibility 0.15s;
    z-index: 1070;
  }
  #sidebar-menu .sliding-menu-panel:not(.sliding-menu-subpanel) a[data-sliding-menu-target=leafItem]:hover::after {
    opacity: 1;
    visibility: visible;
  }
  #sidebar-menu .sliding-menu-panel .menu-title {
    display: none;
  }
  #sidebar-menu .sliding-menu-subpanel {
    position: fixed;
    inset: auto;
    left: var(--theme-sidebar-collapsed-width, 70px);
    width: 220px;
    height: auto;
    max-height: calc(100vh - 2rem);
    padding: 0.5rem 0;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: none !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.15s, visibility 0.15s;
  }
  #sidebar-menu .sliding-menu-subpanel.hover-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  #sidebar-menu .sliding-menu-subpanel a {
    padding: 0.5rem 1rem;
    white-space: nowrap;
  }
  #sidebar-menu .sliding-menu-subpanel a::before {
    display: none;
  }
  #sidebar-menu .sliding-menu-subpanel .submenu-header {
    display: block;
    padding: 0.5rem 1rem 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--theme-sidebar-active-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0.25rem;
  }
}
.menu-mobile .sliding-menu-panel {
  top: 3rem;
}
.menu-mobile .sliding-menu-header {
  position: relative;
  z-index: 10;
}

.sliding-menu-panel a.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .sliding-menu-panel {
    transition: none;
  }
}
/*
 * Notification Dropdown & Items
 */
.notification-dropdown {
  width: 360px;
  max-height: 460px;
  overflow: hidden;
}
.notification-dropdown.show {
  display: flex;
  flex-direction: column;
}
.notification-dropdown .notification-dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--bs-border-color);
}
.notification-dropdown .notification-dropdown-header h6 {
  margin: 0;
  font-weight: 600;
}
.notification-dropdown .notification-dropdown-body {
  overflow-y: auto;
  max-height: 360px;
  scrollbar-width: thin;
}
.notification-dropdown .notification-dropdown-footer {
  padding: 8px 16px;
  border-top: 1px solid var(--bs-border-color);
  text-align: center;
}
.notification-dropdown .notification-dropdown-footer a {
  font-size: 13px;
}

.notification-item {
  padding: 10px 16px;
  border-bottom: 1px solid var(--bs-border-color);
  border-left: 3px solid transparent;
  transition: background-color 0.15s ease;
}
.notification-item:last-child {
  border-bottom: none;
}
.notification-item:hover {
  background-color: var(--bs-tertiary-bg);
}
.notification-item--unread {
  background-color: rgba(var(--bs-primary-rgb), 0.04);
}
.notification-item--critical {
  border-left-color: var(--bs-danger);
}
.notification-item--high {
  border-left-color: var(--bs-warning);
}
.notification-item--normal {
  border-left-color: var(--bs-info);
}
.notification-item--low {
  border-left-color: var(--bs-secondary);
}
.notification-item .notification-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--bs-tertiary-bg);
  flex-shrink: 0;
}
.notification-item .notification-expand,
.notification-item .notification-dismiss {
  opacity: 0.5;
  transition: opacity 0.15s ease;
  line-height: 1;
}
.notification-item .notification-expand:hover,
.notification-item .notification-dismiss:hover {
  opacity: 1;
}

.notification-detail {
  display: none;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--bs-border-color);
}
.notification-detail.show {
  display: block;
}

.notification-bell-badge {
  position: absolute;
  top: 12px;
  right: 4px;
  font-size: 10px;
  min-width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  border-radius: 9px;
  padding: 0 4px;
}

/*
 * Senternal Hosting Control Panel
 * (c) Senternal LLC <http://www.senternal.com>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */
.dataTables_wrapper {
  position: relative;
  clear: both;
  overflow: hidden;
}

.dataTables_length, .dataTables_filter {
  margin-bottom: 1rem;
}

.dataTables_length {
  float: left;
}

.dataTables_length label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8375rem;
  color: var(--bs-secondary-color);
}

.dataTables_length select {
  padding: 0.25rem 2rem 0.25rem 0.5rem;
  font-size: 0.8375rem;
  border: 1px solid var(--bs-border-color);
  border-radius: 2px;
  background-color: var(--bs-secondary-bg);
}

.dataTables_filter {
  float: right;
}

.dataTables_filter label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8375rem;
  color: var(--bs-secondary-color);
}

.dataTables_filter input {
  padding: 0.375rem 0.75rem;
  font-size: 0.8375rem;
  border: 1px solid var(--bs-border-color);
  border-radius: 4px;
  background-color: var(--bs-secondary-bg);
  min-width: 200px;
}

.dataTables_filter input:focus {
  border-color: #556ee6;
  outline: 0;
  box-shadow: 0 0 0 0.15rem rgba(85, 110, 230, 0.25);
}

table.dataTable {
  width: 100%;
  margin: 0 auto;
  clear: both;
  border-collapse: separate;
  border-spacing: 0;
}

table.dataTable thead th, table.dataTable tfoot th {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--bs-secondary-color);
  background-color: #f8f9fa;
}

table.dataTable thead th, table.dataTable thead td {
  padding: 0.75rem 0.75rem;
  border-bottom: 1px solid var(--bs-border-color);
}

table.dataTable tbody tr {
  background-color: var(--bs-secondary-bg);
}

table.dataTable tbody td {
  padding: 0.75rem 0.75rem;
  border-bottom: 1px solid var(--bs-border-color);
  vertical-align: middle;
}

table.dataTable tbody tr:hover {
  background-color: var(--bs-tertiary-bg);
}

table.dataTable thead th.sorting, table.dataTable thead th.sorting_asc, table.dataTable thead th.sorting_desc {
  cursor: pointer;
  position: relative;
  padding-right: 1.5rem;
}

table.dataTable thead th.sorting::after, table.dataTable thead th.sorting_asc::after, table.dataTable thead th.sorting_desc::after {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem;
  color: var(--bs-secondary-color);
}

table.dataTable thead th.sorting::after {
  content: "⇅";
  opacity: 0.3;
}

table.dataTable thead th.sorting_asc::after {
  content: "▲";
  opacity: 1;
  color: #556ee6;
}

table.dataTable thead th.sorting_desc::after {
  content: "▼";
  opacity: 1;
  color: #556ee6;
}

.dataTables_info {
  font-size: 0.8375rem;
  color: var(--bs-secondary-color);
  white-space: nowrap;
}

.dataTables_paginate {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.dataTables_paginate .paginate_button {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  margin-left: -1px;
  font-size: 0.8375rem;
  color: #556ee6;
  background-color: var(--bs-secondary-bg);
  border: 1px solid var(--bs-border-color);
  transition-property: color, background-color, border-color;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}

.dataTables_paginate .paginate_button:first-child {
  border-radius: 4px 0 0 4px;
  margin-left: 0;
}

.dataTables_paginate .paginate_button:last-child {
  border-radius: 0 4px 4px 0;
}

.dataTables_paginate .paginate_button:hover {
  color: #4458b8;
  background-color: var(--bs-tertiary-bg);
  cursor: pointer;
}

.dataTables_paginate .paginate_button.current {
  color: #fff;
  background-color: #556ee6;
  border-color: #556ee6;
}

.dataTables_paginate .paginate_button.disabled {
  color: var(--bs-secondary-color);
  pointer-events: none;
  background-color: var(--bs-secondary-bg);
}

table.dataTable tbody tr.dataTables_empty td {
  text-align: center;
  padding: 2rem;
  color: var(--bs-secondary-color);
}

.dataTables_processing {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  margin-left: -100px;
  margin-top: -26px;
  text-align: center;
  padding: 1rem 0;
  background-color: var(--bs-secondary-bg);
  border: 1px solid var(--bs-border-color);
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.dataTables_scrollHead, .dataTables_scrollBody {
  overflow: hidden;
}

.dataTables_scrollHead .dataTables_scrollHeadInner {
  box-sizing: content-box;
  width: 100%;
  padding-right: 17px;
}

[data-bs-theme=dark] table.dataTable thead th, [data-bs-theme=dark] table.dataTable tfoot th {
  background-color: #32394e;
}
[data-bs-theme=dark] table.dataTable tbody tr {
  background-color: #2a3042;
}
[data-bs-theme=dark] table.dataTable tbody tr:hover {
  background-color: #32394e;
}

/*
 * Senternal Hosting Control Panel
 * (c) Senternal LLC <http://www.senternal.com>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */
.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: calc(1.5em + 0.94rem + 2px);
  user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 0.75rem;
  padding-right: 2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  position: relative;
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
  padding-right: 0;
}

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: calc(1.5em + 0.94rem + 2px);
  user-select: none;
}

.select2-container--default .select2-selection--single {
  background-color: var(--bs-secondary-bg);
  border: 1px solid var(--bs-border-color-translucent, #ced4da);
  border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--bs-body-color);
  line-height: calc(1.5em + 0.94rem);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: calc(1.5em + 0.94rem);
  position: absolute;
  top: 1px;
  right: 1px;
  width: 2rem;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: var(--bs-secondary-color) transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent var(--bs-secondary-color) transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--default.select2-container--focus .select2-selection--single, .select2-container--default.select2-container--focus .select2-selection--multiple {
  border-color: rgba(73, 80, 87, 0.2);
  outline: 0;
  box-shadow: 0 0 0 0.15rem rgba(85, 110, 230, 0.25);
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: var(--bs-tertiary-bg);
  cursor: default;
}

.select2-container--default .select2-selection--multiple {
  background-color: var(--bs-secondary-bg);
  border: 1px solid var(--bs-border-color-translucent, #ced4da);
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: rgba(85, 110, 230, 0.1);
  border: 1px solid rgba(85, 110, 230, 0.2);
  border-radius: 2px;
  padding: 0.125rem 0.5rem;
  font-size: 0.8375rem;
  color: #556ee6;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #556ee6;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #4458b8;
}

.select2-dropdown {
  background-color: var(--bs-secondary-bg);
  border: 1px solid var(--bs-border-color);
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  z-index: 1000;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  margin-top: -1px;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: -1px;
}

.select2-search--dropdown {
  display: block;
  padding: 0.5rem;
}

.select2-search--dropdown .select2-search__field {
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 0.9375rem;
  border: 1px solid var(--bs-border-color);
  border-radius: 4px;
}

.select2-search--dropdown .select2-search__field:focus {
  border-color: #556ee6;
  outline: 0;
  box-shadow: 0 0 0 0.15rem rgba(85, 110, 230, 0.25);
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 200px;
  overflow-y: auto;
}

.select2-results__option {
  padding: 0.5rem 0.75rem;
  user-select: none;
  font-size: 0.9375rem;
}

.select2-results__option--highlighted {
  background-color: var(--bs-tertiary-bg);
  color: var(--bs-body-color);
}

.select2-results__option--selected {
  background-color: #556ee6;
  color: #fff;
}

.select2-results__option--disabled {
  color: var(--bs-secondary-color);
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: rgba(85, 110, 230, 0.1);
  color: #556ee6;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #556ee6;
  color: #fff;
}

[data-bs-theme=dark] .select2-container--default .select2-selection--single, [data-bs-theme=dark] .select2-container--default .select2-selection--multiple {
  background-color: #2a3042;
  border-color: #32394e;
}
[data-bs-theme=dark] .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #a6b0cf;
}
[data-bs-theme=dark] .select2-dropdown {
  background-color: #2a3042;
  border-color: #32394e;
}

/*
 * Senternal Hosting Control Panel
 * (c) Senternal LLC <http://www.senternal.com>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */
.toast-container {
  position: fixed;
  z-index: 1090;
  pointer-events: none;
}
.toast-container.toast-top-right {
  top: 1rem;
  right: 1rem;
}
.toast-container.toast-top-left {
  top: 1rem;
  left: 1rem;
}
.toast-container.toast-top-center {
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
}
.toast-container.toast-top-full-width {
  top: 1rem;
  left: 1rem;
  right: 1rem;
}
.toast-container.toast-bottom-right {
  bottom: 1rem;
  right: 1rem;
}
.toast-container.toast-bottom-left {
  bottom: 1rem;
  left: 1rem;
}
.toast-container.toast-bottom-center {
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
}
.toast-container.toast-bottom-full-width {
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
}

.toast {
  display: flex;
  align-items: center;
  width: 350px;
  max-width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  color: #fff;
  background-color: var(--bs-secondary-bg);
  border: none;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  pointer-events: auto;
  opacity: 1;
  transition-property: opacity 0.3s ease, transform 0.3s ease;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}
.toast.hiding {
  opacity: 0;
  transform: translateX(20px);
}

.toast-message {
  flex: 1;
  font-size: 0.8375rem;
  line-height: 1.5;
}

.toast-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
  display: block;
}

.toast-close-button {
  position: relative;
  right: -0.25rem;
  top: -0.25rem;
  padding: 0;
  background: transparent;
  border: none;
  color: inherit;
  opacity: 0.8;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition-property: opacity;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}
.toast-close-button:hover {
  opacity: 1;
}

.toast-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-right: 0.75rem;
  border-radius: 50%;
  font-size: 1rem;
}

.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 0 0 4px 4px;
}

.toast-success {
  background-color: #34c38f;
  color: #fff;
}
.toast-success .toast-icon {
  background-color: rgba(255, 255, 255, 0.2);
}

.toast-error, .toast-danger {
  background-color: #f46a6a;
  color: #fff;
}
.toast-error .toast-icon, .toast-danger .toast-icon {
  background-color: rgba(255, 255, 255, 0.2);
}

.toast-warning {
  background-color: #f1b44c;
  color: #343a40;
}
.toast-warning .toast-icon {
  background-color: rgba(52, 58, 64, 0.1);
}
.toast-warning .toast-close-button {
  color: #343a40;
}
.toast-warning .toast-progress {
  background-color: rgba(52, 58, 64, 0.2);
}

.toast-info {
  background-color: #50a5f1;
  color: #fff;
}
.toast-info .toast-icon {
  background-color: rgba(255, 255, 255, 0.2);
}

.toast-soft-success {
  background-color: rgba(52, 195, 143, 0.15);
  color: #2a9c72;
  border: 1px solid rgba(52, 195, 143, 0.25);
}
.toast-soft-success .toast-icon {
  background-color: #34c38f;
  color: #fff;
}

.toast-soft-danger, .toast-soft-error {
  background-color: rgba(244, 106, 106, 0.15);
  color: #c35555;
  border: 1px solid rgba(244, 106, 106, 0.25);
}
.toast-soft-danger .toast-icon, .toast-soft-error .toast-icon {
  background-color: #f46a6a;
  color: #fff;
}

.toast-soft-warning {
  background-color: rgba(241, 180, 76, 0.15);
  color: #a97e35;
  border: 1px solid rgba(241, 180, 76, 0.25);
}
.toast-soft-warning .toast-icon {
  background-color: #f1b44c;
  color: #343a40;
}

.toast-soft-info {
  background-color: rgba(80, 165, 241, 0.15);
  color: #4084c1;
  border: 1px solid rgba(80, 165, 241, 0.25);
}
.toast-soft-info .toast-icon {
  background-color: #50a5f1;
  color: #fff;
}

#toast-container {
  position: fixed;
  z-index: 1090;
  pointer-events: none;
}
#toast-container > div {
  pointer-events: auto;
}
#toast-container.toast-top-right {
  top: 12px;
  right: 12px;
}
#toast-container.toast-top-left {
  top: 12px;
  left: 12px;
}
#toast-container.toast-top-center {
  top: 12px;
  left: 50%;
  margin-left: -175px;
}
#toast-container.toast-bottom-right {
  bottom: 12px;
  right: 12px;
}
#toast-container.toast-bottom-left {
  bottom: 12px;
  left: 12px;
}
#toast-container.toast-bottom-center {
  bottom: 12px;
  left: 50%;
  margin-left: -175px;
}
#toast-container > .toast {
  width: 350px;
  padding: 15px;
  margin: 0 0 6px;
  border-radius: 4px;
  background-position: 15px center;
  background-repeat: no-repeat;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  opacity: 0.95;
}
#toast-container > .toast:hover {
  opacity: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
#toast-container > .toast-success {
  background-color: #34c38f;
}
#toast-container > .toast-error {
  background-color: #f46a6a;
}
#toast-container > .toast-info {
  background-color: #50a5f1;
}
#toast-container > .toast-warning {
  background-color: #f1b44c;
  color: #343a40;
}

[data-bs-theme=dark] .toast-soft-success,
[data-bs-theme=dark] .toast-soft-danger,
[data-bs-theme=dark] .toast-soft-error,
[data-bs-theme=dark] .toast-soft-warning,
[data-bs-theme=dark] .toast-soft-info {
  background-color: rgba(var(--bs-body-color-rgb), 0.1);
}

/*
 * Senternal Hosting Control Panel
 * (c) Senternal LLC <http://www.senternal.com>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */
.waves-effect {
  position: relative;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.waves-ripple {
  position: absolute;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin-top: -50px;
  margin-left: -50px;
  opacity: 0;
  background: rgba(255, 255, 255, 0.2);
  background: radial-gradient(rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
  transition: all 0.5s ease-out;
  transition-property: transform, opacity;
  transform: scale(0) translate(0, 0);
  pointer-events: none;
}

.waves-block {
  display: block;
}

.waves-light .waves-ripple {
  background: rgba(255, 255, 255, 0.45);
  background: radial-gradient(rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
}

.waves-input-wrapper {
  border-radius: 4px;
  vertical-align: bottom;
}
.waves-input-wrapper.waves-button {
  padding: 0;
}
.waves-input-wrapper .waves-button-input {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
}

.waves-float {
  mask-image: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition-property: all;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}
.waves-float:active {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.waves-circle {
  text-align: center;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  border-radius: 50%;
}

.waves-notransition {
  transition: none !important;
}

.vertical-menu .waves-effect .waves-ripple {
  background: rgba(255, 255, 255, 0.15);
  background: radial-gradient(rgba(255, 255, 255, 0.1) 0, rgba(255, 255, 255, 0.15) 40%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.25) 60%, rgba(255, 255, 255, 0) 70%);
}

.btn-primary .waves-ripple,
.btn-success .waves-ripple,
.btn-info .waves-ripple,
.btn-danger .waves-ripple {
  background: rgba(255, 255, 255, 0.25);
}

.btn-light .waves-ripple,
.btn-outline-light .waves-ripple {
  background: rgba(52, 58, 64, 0.15);
}

.btn-secondary .waves-ripple,
.btn-outline-secondary .waves-ripple {
  background: rgba(0, 0, 0, 0.1);
}

.waves-button {
  border: none;
  outline: none;
}
.waves-button:hover, .waves-button:focus {
  outline: none;
}

.waves-button .waves-effect > * {
  position: relative;
  z-index: 1;
}

.waves-button-input {
  width: 100%;
  height: 100%;
  padding: 0;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
}

/*
 * Senternal Hosting Control Panel
 * (c) Senternal LLC <http://www.senternal.com>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */
.flatpickr-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.flatpickr-input {
  background-color: var(--bs-secondary-bg);
  border: 1px solid var(--bs-border-color);
  border-radius: 4px;
  padding: 0.5rem 0.75rem;
  font-size: 0.9375rem;
  color: var(--bs-body-color);
  width: 100%;
  cursor: pointer;
}
.flatpickr-input:focus {
  border-color: rgba(73, 80, 87, 0.2);
  outline: 0;
  box-shadow: 0 0 0 0.15rem rgba(85, 110, 230, 0.25);
}
.flatpickr-input[readonly] {
  background-color: var(--bs-secondary-bg);
  opacity: 1;
}
.flatpickr-input:disabled {
  background-color: var(--bs-tertiary-bg);
  cursor: not-allowed;
}

.flatpickr-calendar {
  background: var(--bs-secondary-bg);
  border: 1px solid var(--bs-border-color);
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  font-family: "Poppins", sans-serif;
  font-size: 0.8375rem;
  width: 320px;
  padding: 0;
  animation: none;
}
.flatpickr-calendar.open, .flatpickr-calendar.inline {
  visibility: visible;
  opacity: 1;
}
.flatpickr-calendar.hasTime .flatpickr-time {
  border-top: 1px solid var(--bs-border-color);
}

.flatpickr-months {
  display: flex;
  padding: 0.5rem;
  border-bottom: 1px solid var(--bs-border-color);
}
.flatpickr-months .flatpickr-month {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  cursor: pointer;
  color: var(--bs-body-color);
  transition-property: background-color;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}
.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  background-color: var(--bs-tertiary-bg);
}
.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.flatpickr-current-month {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--bs-body-color);
}
.flatpickr-current-month .cur-month {
  font-weight: 600;
}
.flatpickr-current-month .numInputWrapper {
  width: 70px;
}
.flatpickr-current-month .numInput {
  padding: 0.25rem;
  border: 1px solid var(--bs-border-color);
  border-radius: 2px;
  background: var(--bs-secondary-bg);
  color: var(--bs-body-color);
  font-size: 0.8375rem;
  text-align: center;
}
.flatpickr-current-month .numInput:focus {
  outline: none;
  border-color: #556ee6;
}

.flatpickr-weekdays {
  display: flex;
  padding: 0.5rem;
  background: transparent;
}

.flatpickr-weekday {
  flex: 1;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--bs-secondary-color);
}

.flatpickr-days {
  padding: 0.25rem 0.5rem 0.5rem;
}

.dayContainer {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  outline: 0;
  justify-content: flex-start;
}

.flatpickr-day {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14.28%;
  height: 36px;
  margin: 0;
  padding: 0;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.8375rem;
  font-weight: 400;
  color: var(--bs-body-color);
  background: transparent;
  border: 0;
  transition-property: background-color, color;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}
.flatpickr-day:hover {
  background-color: var(--bs-tertiary-bg);
}
.flatpickr-day.today {
  border: 1px solid #556ee6;
}
.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange, .flatpickr-day.endRange.inRange, .flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover, .flatpickr-day.selected.prevMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.endRange.nextMonthDay {
  background: #556ee6;
  color: #fff;
  border-color: #556ee6;
}
.flatpickr-day.inRange {
  background: rgba(85, 110, 230, 0.1);
  color: #556ee6;
  border-radius: 0;
}
.flatpickr-day.prevMonthDay, .flatpickr-day.nextMonthDay {
  color: var(--bs-secondary-color);
}
.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover {
  color: var(--bs-secondary-color);
  opacity: 0.5;
  cursor: not-allowed;
}

.flatpickr-time {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}
.flatpickr-time .numInputWrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flatpickr-time .flatpickr-time-separator {
  padding: 0 0.25rem;
  color: var(--bs-body-color);
}
.flatpickr-time input {
  width: 50px;
  padding: 0.25rem;
  border: 1px solid var(--bs-border-color);
  border-radius: 2px;
  background: var(--bs-secondary-bg);
  color: var(--bs-body-color);
  font-size: 0.9375rem;
  text-align: center;
}
.flatpickr-time input:focus {
  outline: none;
  border-color: #556ee6;
}
.flatpickr-time .flatpickr-am-pm {
  width: 50px;
  padding: 0.25rem;
  margin-left: 0.5rem;
  border: 1px solid var(--bs-border-color);
  border-radius: 2px;
  background: var(--bs-secondary-bg);
  color: var(--bs-body-color);
  font-size: 0.8375rem;
  cursor: pointer;
}
.flatpickr-time .flatpickr-am-pm:hover {
  background: var(--bs-tertiary-bg);
}

.flatpickr-time .arrowUp,
.flatpickr-time .arrowDown,
.numInputWrapper .arrowUp,
.numInputWrapper .arrowDown {
  display: none;
}

.flatpickr-calendar.inline {
  position: relative;
  box-shadow: none;
  border: 1px solid var(--bs-border-color);
}

[data-bs-theme=dark] .flatpickr-calendar {
  background: #2a3042;
  border-color: #32394e;
}
[data-bs-theme=dark] .flatpickr-months {
  border-color: #32394e;
}
[data-bs-theme=dark] .flatpickr-input {
  background-color: #2a3042;
  border-color: #32394e;
  color: #a6b0cf;
}

/*
 * Senternal Hosting Control Panel
 * (c) Senternal LLC <http://www.senternal.com>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */
.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}

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

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

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

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

.simplebar-content-wrapper {
  direction: inherit;
  box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.simplebar-content-wrapper::-webkit-scrollbar {
  width: 0;
  height: 0;
}

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

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

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}
.simplebar-track.simplebar-vertical {
  top: 0;
  width: 11px;
}
.simplebar-track.simplebar-vertical .simplebar-scrollbar::before {
  top: 2px;
  bottom: 2px;
}
.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px;
}
.simplebar-track.simplebar-horizontal .simplebar-scrollbar::before {
  height: 100%;
  left: 2px;
  right: 2px;
}
.simplebar-track.simplebar-hover .simplebar-scrollbar::before, .simplebar-track:hover .simplebar-scrollbar::before {
  background-color: rgba(52, 58, 64, 0.6);
}

.simplebar-scrollbar {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 10px;
  pointer-events: all;
}
.simplebar-scrollbar::before {
  position: absolute;
  content: "";
  background: rgba(52, 58, 64, 0.3);
  border-radius: 7px;
  left: 2px;
  right: 2px;
  opacity: 0;
  transition: opacity 0.2s linear;
}
.simplebar-scrollbar.simplebar-visible::before {
  opacity: 1;
  transition: opacity 0s linear;
}

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

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

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

.simplebar-scrollbar.simplebar-visible::before {
  opacity: 1;
}

.sidebar-menu-scroll.simplebar-vertical,
.vertical-menu .simplebar-track.simplebar-vertical {
  width: 6px;
  right: 0;
}
.sidebar-menu-scroll .simplebar-scrollbar::before,
.vertical-menu .simplebar-track .simplebar-scrollbar::before {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}
.sidebar-menu-scroll .simplebar-scrollbar.simplebar-visible::before,
.vertical-menu .simplebar-track .simplebar-scrollbar.simplebar-visible::before {
  opacity: 0.5;
}
.sidebar-menu-scroll.simplebar-hover .simplebar-scrollbar::before, .sidebar-menu-scroll:hover .simplebar-scrollbar::before,
.vertical-menu .simplebar-track.simplebar-hover .simplebar-scrollbar::before,
.vertical-menu .simplebar-track:hover .simplebar-scrollbar::before {
  background: rgba(255, 255, 255, 0.4);
  opacity: 0.7;
}

[data-bs-theme=dark] .simplebar-scrollbar::before {
  background: rgba(255, 255, 255, 0.2);
}
[data-bs-theme=dark] .simplebar-track.simplebar-hover .simplebar-scrollbar::before,
[data-bs-theme=dark] .simplebar-track:hover .simplebar-scrollbar::before {
  background-color: rgba(255, 255, 255, 0.4);
}

.vertical-menu:not([data-bs-theme=dark]) .simplebar-track .simplebar-scrollbar::before {
  background: rgba(52, 58, 64, 0.2);
}

/*
 * Senternal Hosting Control Panel
 * (c) Senternal LLC <http://www.senternal.com>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */
.swal2-popup {
  display: flex !important;
  flex-direction: column;
  background: var(--bs-secondary-bg);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-family: "Poppins", sans-serif;
  padding: 1.5rem;
  max-width: 32rem;
  width: 100%;
}
.swal2-popup.swal2-toast {
  flex-direction: row;
  align-items: center;
  width: auto;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  background: var(--bs-secondary-bg);
}

.swal2-container {
  display: flex;
  position: fixed;
  z-index: 1050;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0.625rem;
  overflow-x: hidden;
  transition: background-color 0.1s;
}
.swal2-container.swal2-backdrop-show {
  background: rgba(0, 0, 0, 0.4);
}
.swal2-container.swal2-top {
  align-items: flex-start;
}
.swal2-container.swal2-bottom {
  align-items: flex-end;
}
.swal2-container.swal2-center {
  align-items: center;
}

.swal2-title {
  position: relative;
  max-width: 100%;
  margin: 0;
  padding: 0 0 0.5rem;
  color: var(--bs-body-color);
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  word-wrap: break-word;
}

.swal2-html-container {
  z-index: 1;
  justify-content: center;
  margin: 0.5rem 0 1rem;
  padding: 0;
  overflow: auto;
  color: var(--bs-secondary-color);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  word-wrap: break-word;
}

.swal2-icon {
  position: relative;
  box-sizing: content-box;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1rem;
  border: 0.25rem solid transparent;
  border-radius: 50%;
  cursor: default;
  user-select: none;
}
.swal2-icon .swal2-icon-content {
  display: flex;
  align-items: center;
  font-size: 3.75rem;
}

.swal2-icon.swal2-success {
  border-color: #34c38f;
  color: #34c38f;
}
.swal2-icon.swal2-success [class^=swal2-success-circular-line],
.swal2-icon.swal2-success .swal2-success-fix,
.swal2-icon.swal2-success .swal2-success-ring {
  position: absolute;
  border-radius: 50%;
}
.swal2-icon.swal2-success .swal2-success-ring {
  z-index: 2;
  top: -0.25rem;
  left: -0.25rem;
  box-sizing: content-box;
  width: 100%;
  height: 100%;
  border: 0.25rem solid rgba(52, 195, 143, 0.3);
}
.swal2-icon.swal2-success .swal2-success-line-tip,
.swal2-icon.swal2-success .swal2-success-line-long {
  display: block;
  position: absolute;
  z-index: 2;
  height: 0.3125rem;
  border-radius: 0.125rem;
  background-color: #34c38f;
}

.swal2-icon.swal2-error {
  border-color: #f46a6a;
  color: #f46a6a;
}
.swal2-icon.swal2-error .swal2-x-mark {
  position: relative;
  flex-grow: 1;
}
.swal2-icon.swal2-error [class^=swal2-x-mark-line] {
  display: block;
  position: absolute;
  top: 50%;
  width: 100%;
  height: 0.3125rem;
  border-radius: 0.125rem;
  background-color: #f46a6a;
}
.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left] {
  transform: rotate(45deg);
}
.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right] {
  transform: rotate(-45deg);
}

.swal2-icon.swal2-warning {
  border-color: #f1b44c;
  color: #f1b44c;
}

.swal2-icon.swal2-info {
  border-color: #50a5f1;
  color: #50a5f1;
}

.swal2-icon.swal2-question {
  border-color: #74788d;
  color: #74788d;
}

.swal2-actions {
  display: flex;
  z-index: 1;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: auto;
  margin: 1rem auto 0;
  padding: 0;
  gap: 0.5rem;
}

.swal2-styled {
  margin: 0;
  padding: 0.5rem 0.75rem;
  font-weight: 500;
  box-shadow: none;
  border-radius: 4px;
  font-size: 0.9375rem;
  transition-property: background-color, border-color;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}
.swal2-styled:focus {
  outline: none;
  box-shadow: none;
}

.swal2-confirm {
  border: 0;
  background-color: #556ee6;
  color: #fff;
}
.swal2-confirm:hover {
  background-color: #4d63cf;
}
.swal2-confirm:focus {
  box-shadow: 0 0 0 0.2rem rgba(85, 110, 230, 0.5);
}

.swal2-deny {
  border: 0;
  background-color: #f46a6a;
  color: #fff;
}
.swal2-deny:hover {
  background-color: #dc5f5f;
}
.swal2-deny:focus {
  box-shadow: 0 0 0 0.2rem rgba(244, 106, 106, 0.5);
}

.swal2-cancel {
  border: 1px solid var(--bs-border-color);
  background-color: var(--bs-secondary-bg);
  color: var(--bs-body-color);
}
.swal2-cancel:hover {
  background-color: var(--bs-tertiary-bg);
}
.swal2-cancel:focus {
  box-shadow: 0 0 0 0.2rem rgba(116, 120, 141, 0.25);
}

.swal2-close {
  z-index: 2;
  position: absolute;
  top: 0;
  right: 0;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  overflow: hidden;
  transition: color 0.1s, box-shadow 0.1s;
  border: none;
  border-radius: 4px;
  background: transparent;
  color: var(--bs-secondary-color);
  font-family: monospace;
  font-size: 1.5rem;
  cursor: pointer;
}
.swal2-close:hover {
  color: var(--bs-body-color);
  background: var(--bs-tertiary-bg);
}

.swal2-input,
.swal2-textarea,
.swal2-select {
  width: 100%;
  padding: 0.5rem 0.75rem;
  margin: 0.5rem auto;
  font-size: 0.9375rem;
  border: 1px solid var(--bs-border-color);
  border-radius: 4px;
  background-color: var(--bs-secondary-bg);
  color: var(--bs-body-color);
  transition-property: border-color, box-shadow;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}
.swal2-input:focus,
.swal2-textarea:focus,
.swal2-select:focus {
  border-color: #556ee6;
  outline: none;
  box-shadow: 0 0 0 0.15rem rgba(85, 110, 230, 0.25);
}

.swal2-textarea {
  min-height: 100px;
  resize: vertical;
}

.swal2-checkbox,
.swal2-radio {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem auto 0;
  gap: 0.5rem;
}
.swal2-checkbox input,
.swal2-radio input {
  flex-shrink: 0;
  margin: 0;
}
.swal2-checkbox span,
.swal2-radio span {
  font-size: 0.9375rem;
  color: var(--bs-body-color);
}

.swal2-validation-message {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.5rem 0 0;
  padding: 0.5rem;
  overflow: hidden;
  background: rgba(244, 106, 106, 0.1);
  color: #f46a6a;
  font-size: 0.8375rem;
  border-radius: 4px;
}
.swal2-validation-message::before {
  content: "!";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  min-width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
  background-color: #f46a6a;
  color: #fff;
  font-weight: 600;
  border-radius: 50%;
}

.swal2-footer {
  justify-content: center;
  margin: 1rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--bs-border-color);
  color: var(--bs-secondary-color);
  font-size: 0.8375rem;
}

.swal2-timer-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.25rem;
  background: rgba(85, 110, 230, 0.2);
}
.swal2-timer-progress-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #556ee6;
}

[data-bs-theme=dark] .swal2-popup {
  background: #2a3042;
}
[data-bs-theme=dark] .swal2-title {
  color: #f6f6f6;
}
[data-bs-theme=dark] .swal2-container.swal2-backdrop-show {
  background: rgba(0, 0, 0, 0.6);
}
[data-bs-theme=dark] .swal2-input,
[data-bs-theme=dark] .swal2-textarea,
[data-bs-theme=dark] .swal2-select {
  background-color: #2a3042;
  border-color: #32394e;
  color: #a6b0cf;
}

/*
 * Senternal Hosting Control Panel
 * (c) Senternal LLC <http://www.senternal.com>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */
.dropzone {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 2rem;
  border: 2px dashed var(--bs-border-color);
  border-radius: 8px;
  background-color: var(--bs-secondary-bg);
  cursor: pointer;
  transition-property: border-color, background-color;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}
.dropzone:hover {
  border-color: #556ee6;
  background-color: rgba(85, 110, 230, 0.02);
}
.dropzone.dz-drag-hover {
  border-color: #556ee6;
  background-color: rgba(85, 110, 230, 0.05);
}
.dropzone.dz-drag-hover .dz-message {
  opacity: 0.8;
}
.dropzone.dz-started .dz-message {
  display: none;
}
.dropzone.dz-clickable * {
  cursor: pointer;
}

.dz-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0;
  padding: 1rem;
}
.dz-message .dz-button {
  background: none;
  color: var(--bs-body-color);
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

.dropzone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background-color: rgba(85, 110, 230, 0.1);
  color: #556ee6;
  font-size: 1.5rem;
}
.dropzone-icon i {
  font-size: 1.75rem;
}

.dropzone-text h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--bs-body-color);
}
.dropzone-text p {
  margin: 0;
  font-size: 0.8375rem;
  color: var(--bs-secondary-color);
}

.dz-preview {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  margin: 0.5rem;
  min-width: 120px;
  max-width: 160px;
  border-radius: 4px;
  background-color: var(--bs-secondary-bg);
  border: 1px solid var(--bs-border-color);
  vertical-align: top;
  transition-property: box-shadow;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}
.dz-preview:hover {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.dz-preview:hover .dz-remove {
  opacity: 1;
}
.dz-preview.dz-file-preview .dz-image {
  border-radius: 4px;
  background: linear-gradient(to bottom, var(--bs-tertiary-bg), var(--bs-secondary-bg));
}
.dz-preview.dz-processing .dz-progress {
  opacity: 1;
  transition: all 0.2s linear;
}
.dz-preview.dz-complete .dz-progress {
  opacity: 0;
  transition: opacity 0.4s ease-in;
}
.dz-preview.dz-success .dz-success-mark {
  opacity: 1;
}
.dz-preview.dz-error .dz-error-mark {
  opacity: 1;
}
.dz-preview.dz-error .dz-error-message {
  opacity: 1;
  pointer-events: auto;
}

.dz-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--bs-tertiary-bg);
}
.dz-image img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.dz-details {
  width: 100%;
  text-align: center;
  margin-top: 0.75rem;
  padding: 0;
  min-width: 0;
}

.dz-filename {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.8375rem;
  color: var(--bs-body-color);
  margin-bottom: 0.25rem;
}
.dz-filename span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dz-size {
  font-size: 0.75rem;
  color: var(--bs-secondary-color);
}
.dz-size span {
  background: transparent;
  border-radius: 0;
}

.dz-progress {
  position: absolute;
  top: 50%;
  left: 15%;
  right: 15%;
  height: 4px;
  margin-top: -2px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}
.dz-progress .dz-upload {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  background-color: #556ee6;
  transition: width 0.3s ease-in-out;
}

.dz-success-mark,
.dz-error-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.5rem;
  height: 2.5rem;
  margin-left: -1.25rem;
  margin-top: -1.25rem;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.2s;
}
.dz-success-mark svg,
.dz-error-mark svg {
  width: 1.25rem;
  height: 1.25rem;
}

.dz-success-mark {
  background-color: #34c38f;
  color: #fff;
}

.dz-error-mark {
  background-color: #f46a6a;
  color: #fff;
}

.dz-error-message {
  display: block;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  width: max-content;
  max-width: 200px;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  background-color: #f46a6a;
  color: #fff;
  font-size: 0.75rem;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%);
  z-index: 10;
  transition-property: opacity;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}
.dz-error-message::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border: 5px solid transparent;
  border-bottom-color: #f46a6a;
}

.dz-remove {
  display: block;
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: #f46a6a;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.5rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}
.dz-remove:hover {
  background-color: #dc5f5f;
}

.dropzone-sm {
  min-height: 100px;
  padding: 1rem;
}
.dropzone-sm .dropzone-icon {
  width: 3rem;
  height: 3rem;
  font-size: 1rem;
}
.dropzone-sm .dropzone-text h4 {
  font-size: 0.9375rem;
}

.dropzone-inline {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 1rem;
  min-height: auto;
}
.dropzone-inline .dz-message {
  flex-direction: row;
  gap: 0.75rem;
}
.dropzone-inline .dropzone-icon {
  margin-bottom: 0;
}
.dropzone-inline .dz-preview {
  flex-direction: row;
  max-width: none;
  padding: 0.5rem;
  margin: 0.25rem;
}
.dropzone-inline .dz-image {
  width: 40px;
  height: 40px;
}
.dropzone-inline .dz-details {
  text-align: left;
  margin-left: 0.75rem;
  margin-top: 0;
}

[data-bs-theme=dark] .dropzone {
  background-color: #2a3042;
  border-color: #32394e;
}
[data-bs-theme=dark] .dropzone:hover {
  background-color: rgba(85, 110, 230, 0.05);
}
[data-bs-theme=dark] .dz-preview {
  background-color: #2a3042;
  border-color: #32394e;
}
[data-bs-theme=dark] .dz-image {
  background-color: #32394e;
}

/*
 * Senternal Hosting Control Panel
 * (c) Senternal LLC <http://www.senternal.com>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */
.apexcharts-canvas {
  position: relative;
  user-select: none;
}

.apexcharts-text {
  font-family: "Poppins", sans-serif !important;
}

.apexcharts-title-text {
  font-weight: 600;
  fill: var(--bs-body-color);
}

.apexcharts-subtitle-text {
  fill: var(--bs-secondary-color);
}

.apexcharts-xaxis-label,
.apexcharts-yaxis-label {
  fill: var(--bs-secondary-color);
  font-size: 0.8375rem;
}

.apexcharts-xaxis-title-text,
.apexcharts-yaxis-title-text {
  fill: var(--bs-secondary-color);
  font-weight: 500;
}

.apexcharts-gridline {
  stroke: var(--bs-border-color);
}

.apexcharts-grid-borders line {
  stroke: var(--bs-border-color);
}

.apexcharts-legend {
  padding: 0 !important;
}

.apexcharts-legend-text {
  color: var(--bs-body-color) !important;
  font-family: "Poppins", sans-serif !important;
  font-size: 0.8375rem !important;
}

.apexcharts-legend-marker {
  margin-right: 0.5rem !important;
}

.apexcharts-tooltip {
  background: var(--bs-secondary-bg) !important;
  border: 1px solid var(--bs-border-color) !important;
  border-radius: 4px !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
}
.apexcharts-tooltip.apexcharts-theme-light {
  color: var(--bs-body-color);
}
.apexcharts-tooltip .apexcharts-tooltip-title {
  background: var(--bs-tertiary-bg) !important;
  border-bottom: 1px solid var(--bs-border-color) !important;
  padding: 0.5rem 0.75rem !important;
  font-weight: 500 !important;
  font-size: 0.8375rem !important;
  color: var(--bs-body-color);
}
.apexcharts-tooltip .apexcharts-tooltip-series-group {
  padding: 0.25rem 0.75rem !important;
}
.apexcharts-tooltip .apexcharts-tooltip-text {
  font-family: "Poppins", sans-serif !important;
  font-size: 0.8375rem !important;
}
.apexcharts-tooltip .apexcharts-tooltip-text .apexcharts-tooltip-text-y-label {
  color: var(--bs-secondary-color);
}
.apexcharts-tooltip .apexcharts-tooltip-text .apexcharts-tooltip-text-y-value {
  color: var(--bs-body-color);
  font-weight: 600;
}
.apexcharts-tooltip .apexcharts-tooltip-marker {
  width: 10px !important;
  height: 10px !important;
  margin-right: 0.5rem !important;
}

.apexcharts-tooltip.apexcharts-theme-dark {
  background: rgba(52, 58, 64, 0.9) !important;
  border-color: transparent !important;
}
.apexcharts-tooltip.apexcharts-theme-dark .apexcharts-tooltip-title {
  background: rgba(0, 0, 0, 0.2) !important;
  border-bottom-color: rgba(255, 255, 255, 0.1) !important;
  color: #fff;
}
.apexcharts-tooltip.apexcharts-theme-dark .apexcharts-tooltip-text-y-label {
  color: rgba(255, 255, 255, 0.7);
}
.apexcharts-tooltip.apexcharts-theme-dark .apexcharts-tooltip-text-y-value {
  color: #fff;
}

.apexcharts-xcrosshairs,
.apexcharts-ycrosshairs {
  stroke: var(--bs-border-color);
}

.apexcharts-toolbar {
  z-index: 10;
}

.apexcharts-zoom-icon,
.apexcharts-zoomin-icon,
.apexcharts-zoomout-icon,
.apexcharts-reset-icon,
.apexcharts-pan-icon,
.apexcharts-selection-icon,
.apexcharts-menu-icon,
.apexcharts-toolbar-custom-icon {
  color: var(--bs-secondary-color);
}
.apexcharts-zoom-icon svg,
.apexcharts-zoomin-icon svg,
.apexcharts-zoomout-icon svg,
.apexcharts-reset-icon svg,
.apexcharts-pan-icon svg,
.apexcharts-selection-icon svg,
.apexcharts-menu-icon svg,
.apexcharts-toolbar-custom-icon svg {
  fill: var(--bs-secondary-color);
}
.apexcharts-zoom-icon:hover svg,
.apexcharts-zoomin-icon:hover svg,
.apexcharts-zoomout-icon:hover svg,
.apexcharts-reset-icon:hover svg,
.apexcharts-pan-icon:hover svg,
.apexcharts-selection-icon:hover svg,
.apexcharts-menu-icon:hover svg,
.apexcharts-toolbar-custom-icon:hover svg {
  fill: var(--bs-body-color);
}
.apexcharts-zoom-icon.apexcharts-selected svg,
.apexcharts-zoomin-icon.apexcharts-selected svg,
.apexcharts-zoomout-icon.apexcharts-selected svg,
.apexcharts-reset-icon.apexcharts-selected svg,
.apexcharts-pan-icon.apexcharts-selected svg,
.apexcharts-selection-icon.apexcharts-selected svg,
.apexcharts-menu-icon.apexcharts-selected svg,
.apexcharts-toolbar-custom-icon.apexcharts-selected svg {
  fill: #556ee6;
}

.apexcharts-menu {
  background: var(--bs-secondary-bg) !important;
  border: 1px solid var(--bs-border-color) !important;
  border-radius: 4px !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
  padding: 0.25rem 0 !important;
}
.apexcharts-menu .apexcharts-menu-item {
  padding: 0.375rem 0.75rem !important;
  font-size: 0.8375rem;
  color: var(--bs-body-color);
}
.apexcharts-menu .apexcharts-menu-item:hover {
  background: var(--bs-tertiary-bg) !important;
}

.apexcharts-datalabels-group text {
  font-family: "Poppins", sans-serif !important;
  font-size: 0.8375rem !important;
}

.apexcharts-pie-label,
.apexcharts-datalabel-label,
.apexcharts-datalabel-value {
  font-family: "Poppins", sans-serif !important;
}

.apexcharts-radialbar .apexcharts-datalabel-value {
  font-size: 1.5rem !important;
  font-weight: 600;
  fill: var(--bs-body-color) !important;
}

.apexcharts-radialbar .apexcharts-datalabel-label {
  fill: var(--bs-secondary-color) !important;
}

.apexcharts-annotation-rect {
  fill: rgba(85, 110, 230, 0.1);
  stroke: #556ee6;
}

.apexcharts-xaxis-annotation-label,
.apexcharts-yaxis-annotation-label,
.apexcharts-point-annotation-label {
  font-family: "Poppins", sans-serif !important;
  font-size: 0.8375rem !important;
  fill: var(--bs-body-color) !important;
}

.apexcharts-series-colors-primary path,
.apexcharts-series-colors-primary rect {
  fill: #556ee6;
}

.apexcharts-series-colors-success path,
.apexcharts-series-colors-success rect {
  fill: #34c38f;
}

.apexcharts-series-colors-info path,
.apexcharts-series-colors-info rect {
  fill: #50a5f1;
}

.apexcharts-series-colors-warning path,
.apexcharts-series-colors-warning rect {
  fill: #f1b44c;
}

.apexcharts-series-colors-danger path,
.apexcharts-series-colors-danger rect {
  fill: #f46a6a;
}

[data-bs-theme=dark] .apexcharts-tooltip.apexcharts-theme-light {
  background: #2a3042 !important;
  border-color: #32394e !important;
  color: #a6b0cf;
}
[data-bs-theme=dark] .apexcharts-tooltip.apexcharts-theme-light .apexcharts-tooltip-title {
  background: #32394e !important;
  border-bottom-color: #32394e !important;
  color: #f6f6f6;
}
[data-bs-theme=dark] .apexcharts-menu {
  background: #2a3042 !important;
  border-color: #32394e !important;
}
[data-bs-theme=dark] .apexcharts-menu .apexcharts-menu-item {
  color: #a6b0cf;
}
[data-bs-theme=dark] .apexcharts-menu .apexcharts-menu-item:hover {
  background: #32394e !important;
}
[data-bs-theme=dark] .apexcharts-gridline {
  stroke: #32394e;
}
[data-bs-theme=dark] .apexcharts-grid-borders line {
  stroke: #32394e;
}
[data-bs-theme=dark] .apexcharts-xaxis-label,
[data-bs-theme=dark] .apexcharts-yaxis-label {
  fill: #a6b0cf;
}
[data-bs-theme=dark] .apexcharts-legend-text {
  color: #a6b0cf !important;
}

/*
 * Senternal Hosting Control Panel
 * (c) Senternal LLC <http://www.senternal.com>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */
:root {
  --chart-grid-color: #dee2e6;
  --chart-axis-color: #74788d;
  --chart-tick-color: #74788d;
  --chart-font-family: Poppins, sans-serif;
  --chart-font-size: 0.8375rem;
  --chart-font-color: #495057;
  --chart-title-color: #343a40;
  --chart-legend-color: #495057;
  --chart-tooltip-bg: #fff;
  --chart-tooltip-color: #495057;
  --chart-tooltip-border-color: #dee2e6;
  --chart-color-1: #556ee6;
  --chart-color-2: #34c38f;
  --chart-color-3: #50a5f1;
  --chart-color-4: #f1b44c;
  --chart-color-5: #f46a6a;
  --chart-color-6: #74788d;
  --chart-color-1-light: rgba(85, 110, 230, 0.2);
  --chart-color-2-light: rgba(52, 195, 143, 0.2);
  --chart-color-3-light: rgba(80, 165, 241, 0.2);
  --chart-color-4-light: rgba(241, 180, 76, 0.2);
  --chart-color-5-light: rgba(244, 106, 106, 0.2);
  --chart-color-6-light: rgba(116, 120, 141, 0.2);
}

[data-bs-theme=dark] {
  --chart-grid-color: #32394e;
  --chart-axis-color: rgba(166, 176, 207, 0.7);
  --chart-tick-color: rgba(166, 176, 207, 0.7);
  --chart-font-color: #a6b0cf;
  --chart-title-color: #f6f6f6;
  --chart-legend-color: #a6b0cf;
  --chart-tooltip-bg: #2a3042;
  --chart-tooltip-color: #a6b0cf;
  --chart-tooltip-border-color: #32394e;
}

.chart-container {
  position: relative;
  width: 100%;
}

.chart-container-sm {
  height: 200px;
}

.chart-container-md {
  height: 300px;
}

.chart-container-lg {
  height: 400px;
}

.chart-container-xl {
  height: 500px;
}

.chart-responsive {
  position: relative;
  width: 100%;
}
.chart-responsive::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.chart-responsive canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.chart-responsive.ratio-1-1::before {
  padding-top: 100%;
}
.chart-responsive.ratio-4-3::before {
  padding-top: 75%;
}
.chart-responsive.ratio-3-2::before {
  padding-top: 66.67%;
}
.chart-responsive.ratio-21-9::before {
  padding-top: 42.86%;
}

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0.75rem 0;
  margin: 0;
  list-style: none;
}

.chart-legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8375rem;
  color: var(--bs-body-color);
  cursor: pointer;
  transition-property: opacity;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}
.chart-legend-item:hover {
  opacity: 0.8;
}
.chart-legend-item.hidden {
  opacity: 0.4;
  text-decoration: line-through;
}

.chart-legend-color {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 2px;
  flex-shrink: 0;
}

.chart-legend-label {
  white-space: nowrap;
}

.chart-legend-vertical {
  flex-direction: column;
  gap: 0.5rem;
}

.chart-loading {
  position: relative;
  min-height: 200px;
}
.chart-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2rem;
  height: 2rem;
  margin: -1rem 0 0 -1rem;
  border: 2px solid var(--bs-border-color);
  border-top-color: #556ee6;
  border-radius: 50%;
  animation: chart-spin 0.8s linear infinite;
}
.chart-loading canvas {
  opacity: 0.3;
}

@keyframes chart-spin {
  to {
    transform: rotate(360deg);
  }
}
.chart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 2rem;
  text-align: center;
  color: var(--bs-secondary-color);
}
.chart-empty .chart-empty-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}
.chart-empty .chart-empty-text {
  font-size: 0.8375rem;
}

.card-chart {
  padding: 0;
}
.card-chart .chart-container {
  padding: 0 1rem 1rem;
}

.chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid var(--bs-border-color);
}

.chart-stat {
  text-align: right;
}
.chart-stat .chart-stat-value {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--bs-body-color);
  line-height: 1.2;
}
.chart-stat .chart-stat-label {
  font-size: 0.8375rem;
  color: var(--bs-secondary-color);
}
.chart-stat .chart-stat-change {
  font-size: 0.8375rem;
  font-weight: 500;
}
.chart-stat .chart-stat-change.positive {
  color: #34c38f;
}
.chart-stat .chart-stat-change.negative {
  color: #f46a6a;
}

.chart-sparkline {
  display: inline-block;
  width: 80px;
  height: 30px;
  vertical-align: middle;
}

.chart-sparkline-lg {
  width: 120px;
  height: 40px;
}

.chart-hidden {
  visibility: hidden;
  opacity: 0;
}

.chart-hover-zoom {
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}
.chart-hover-zoom:hover {
  transform: scale(1.02);
}

/*
 * Senternal Hosting Control Panel
 * (c) Senternal LLC <http://www.senternal.com>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */
.text-primary {
  color: #556ee6 !important;
}

.text-secondary {
  color: #74788d !important;
}

.text-success {
  color: #34c38f !important;
}

.text-info {
  color: #50a5f1 !important;
}

.text-warning {
  color: #f1b44c !important;
}

.text-danger {
  color: #f46a6a !important;
}

.text-light {
  color: #eff2f7 !important;
}

.text-dark {
  color: #343a40 !important;
}

.text-white {
  color: #fff !important;
}

.text-black {
  color: #000 !important;
}

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

.text-muted {
  color: var(--bs-secondary-color) !important;
}

.bg-primary {
  background-color: #556ee6 !important;
}

.bg-secondary {
  background-color: #74788d !important;
}

.bg-success {
  background-color: #34c38f !important;
}

.bg-info {
  background-color: #50a5f1 !important;
}

.bg-warning {
  background-color: #f1b44c !important;
}

.bg-danger {
  background-color: #f46a6a !important;
}

.bg-light {
  background-color: #eff2f7 !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

.bg-soft-primary, .bg-primary-subtle {
  background-color: rgba(85, 110, 230, 0.18) !important;
  color: #556ee6 !important;
}

.bg-soft-secondary, .bg-secondary-subtle {
  background-color: rgba(116, 120, 141, 0.18) !important;
  color: #74788d !important;
}

.bg-soft-success, .bg-success-subtle {
  background-color: rgba(52, 195, 143, 0.18) !important;
  color: #34c38f !important;
}

.bg-soft-info, .bg-info-subtle {
  background-color: rgba(80, 165, 241, 0.18) !important;
  color: #50a5f1 !important;
}

.bg-soft-warning, .bg-warning-subtle {
  background-color: rgba(241, 180, 76, 0.18) !important;
  color: #f1b44c !important;
}

.bg-soft-danger, .bg-danger-subtle {
  background-color: rgba(244, 106, 106, 0.18) !important;
  color: #f46a6a !important;
}

.bg-soft-light, .bg-light-subtle {
  background-color: rgba(239, 242, 247, 0.18) !important;
  color: #eff2f7 !important;
}

.bg-soft-dark, .bg-dark-subtle {
  background-color: rgba(52, 58, 64, 0.18) !important;
  color: #343a40 !important;
}

.bg-white {
  background-color: #fff !important;
}

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

.bg-body {
  background-color: var(--bs-body-bg) !important;
}

.bg-body-secondary {
  background-color: var(--bs-secondary-bg) !important;
}

.bg-body-tertiary {
  background-color: var(--bs-tertiary-bg) !important;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, #556ee6 0%, #4458b8 100%) !important;
  color: #fff !important;
}

.bg-gradient-secondary {
  background: linear-gradient(135deg, #74788d 0%, #5d6071 100%) !important;
  color: #fff !important;
}

.bg-gradient-success {
  background: linear-gradient(135deg, #34c38f 0%, #2a9c72 100%) !important;
  color: #000 !important;
}

.bg-gradient-info {
  background: linear-gradient(135deg, #50a5f1 0%, #4084c1 100%) !important;
  color: #000 !important;
}

.bg-gradient-warning {
  background: linear-gradient(135deg, #f1b44c 0%, #c1903d 100%) !important;
  color: #000 !important;
}

.bg-gradient-danger {
  background: linear-gradient(135deg, #f46a6a 0%, #c35555 100%) !important;
  color: #000 !important;
}

.bg-gradient-light {
  background: linear-gradient(135deg, #eff2f7 0%, #bfc2c6 100%) !important;
  color: #000 !important;
}

.bg-gradient-dark {
  background: linear-gradient(135deg, #343a40 0%, #2a2e33 100%) !important;
  color: #fff !important;
}

.border-primary {
  border-color: #556ee6 !important;
}

.border-secondary {
  border-color: #74788d !important;
}

.border-success {
  border-color: #34c38f !important;
}

.border-info {
  border-color: #50a5f1 !important;
}

.border-warning {
  border-color: #f1b44c !important;
}

.border-danger {
  border-color: #f46a6a !important;
}

.border-light {
  border-color: #eff2f7 !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-white {
  border-color: #fff !important;
}

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

.link-primary {
  color: #556ee6 !important;
  text-decoration-color: rgba(85, 110, 230, 0.5) !important;
}
.link-primary:hover, .link-primary:focus {
  color: #4458b8 !important;
  text-decoration-color: #4458b8 !important;
}

.link-secondary {
  color: #74788d !important;
  text-decoration-color: rgba(116, 120, 141, 0.5) !important;
}
.link-secondary:hover, .link-secondary:focus {
  color: #5d6071 !important;
  text-decoration-color: #5d6071 !important;
}

.link-success {
  color: #34c38f !important;
  text-decoration-color: rgba(52, 195, 143, 0.5) !important;
}
.link-success:hover, .link-success:focus {
  color: #2a9c72 !important;
  text-decoration-color: #2a9c72 !important;
}

.link-info {
  color: #50a5f1 !important;
  text-decoration-color: rgba(80, 165, 241, 0.5) !important;
}
.link-info:hover, .link-info:focus {
  color: #4084c1 !important;
  text-decoration-color: #4084c1 !important;
}

.link-warning {
  color: #f1b44c !important;
  text-decoration-color: rgba(241, 180, 76, 0.5) !important;
}
.link-warning:hover, .link-warning:focus {
  color: #c1903d !important;
  text-decoration-color: #c1903d !important;
}

.link-danger {
  color: #f46a6a !important;
  text-decoration-color: rgba(244, 106, 106, 0.5) !important;
}
.link-danger:hover, .link-danger:focus {
  color: #c35555 !important;
  text-decoration-color: #c35555 !important;
}

.link-light {
  color: #eff2f7 !important;
  text-decoration-color: rgba(239, 242, 247, 0.5) !important;
}
.link-light:hover, .link-light:focus {
  color: #bfc2c6 !important;
  text-decoration-color: #bfc2c6 !important;
}

.link-dark {
  color: #343a40 !important;
  text-decoration-color: rgba(52, 58, 64, 0.5) !important;
}
.link-dark:hover, .link-dark:focus {
  color: #2a2e33 !important;
  text-decoration-color: #2a2e33 !important;
}

.icon-primary {
  color: #556ee6;
}

.icon-secondary {
  color: #74788d;
}

.icon-success {
  color: #34c38f;
}

.icon-info {
  color: #50a5f1;
}

.icon-warning {
  color: #f1b44c;
}

.icon-danger {
  color: #f46a6a;
}

.icon-light {
  color: #eff2f7;
}

.icon-dark {
  color: #343a40;
}

.opacity-10 {
  opacity: 0.1 !important;
}

.opacity-20 {
  opacity: 0.2 !important;
}

.opacity-30 {
  opacity: 0.3 !important;
}

.opacity-40 {
  opacity: 0.4 !important;
}

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

.opacity-60 {
  opacity: 0.6 !important;
}

.opacity-70 {
  opacity: 0.7 !important;
}

.opacity-80 {
  opacity: 0.8 !important;
}

.opacity-90 {
  opacity: 0.9 !important;
}

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

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

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

.bg-orange {
  background-color: #fd7e14 !important;
}

.bg-lime {
  background-color: #8bc34a !important;
}

/*
 * Senternal Hosting Control Panel
 * (c) Senternal LLC <http://www.senternal.com>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */
.m-6 {
  margin: 4rem !important;
}

.mt-6, .my-6 {
  margin-top: 4rem !important;
}

.mb-6, .my-6 {
  margin-bottom: 4rem !important;
}

.ms-6, .mx-6 {
  margin-left: 4rem !important;
}

.me-6, .mx-6 {
  margin-right: 4rem !important;
}

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

.mt-7, .my-7 {
  margin-top: 5rem !important;
}

.mb-7, .my-7 {
  margin-bottom: 5rem !important;
}

.ms-7, .mx-7 {
  margin-left: 5rem !important;
}

.me-7, .mx-7 {
  margin-right: 5rem !important;
}

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

.mt-8, .my-8 {
  margin-top: 6rem !important;
}

.mb-8, .my-8 {
  margin-bottom: 6rem !important;
}

.ms-8, .mx-8 {
  margin-left: 6rem !important;
}

.me-8, .mx-8 {
  margin-right: 6rem !important;
}

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

.mt-9, .my-9 {
  margin-top: 7rem !important;
}

.mb-9, .my-9 {
  margin-bottom: 7rem !important;
}

.ms-9, .mx-9 {
  margin-left: 7rem !important;
}

.me-9, .mx-9 {
  margin-right: 7rem !important;
}

.m-10 {
  margin: 8rem !important;
}

.mt-10, .my-10 {
  margin-top: 8rem !important;
}

.mb-10, .my-10 {
  margin-bottom: 8rem !important;
}

.ms-10, .mx-10 {
  margin-left: 8rem !important;
}

.me-10, .mx-10 {
  margin-right: 8rem !important;
}

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

.pt-6, .py-6 {
  padding-top: 4rem !important;
}

.pb-6, .py-6 {
  padding-bottom: 4rem !important;
}

.ps-6, .px-6 {
  padding-left: 4rem !important;
}

.pe-6, .px-6 {
  padding-right: 4rem !important;
}

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

.pt-7, .py-7 {
  padding-top: 5rem !important;
}

.pb-7, .py-7 {
  padding-bottom: 5rem !important;
}

.ps-7, .px-7 {
  padding-left: 5rem !important;
}

.pe-7, .px-7 {
  padding-right: 5rem !important;
}

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

.pt-8, .py-8 {
  padding-top: 6rem !important;
}

.pb-8, .py-8 {
  padding-bottom: 6rem !important;
}

.ps-8, .px-8 {
  padding-left: 6rem !important;
}

.pe-8, .px-8 {
  padding-right: 6rem !important;
}

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

.pt-9, .py-9 {
  padding-top: 7rem !important;
}

.pb-9, .py-9 {
  padding-bottom: 7rem !important;
}

.ps-9, .px-9 {
  padding-left: 7rem !important;
}

.pe-9, .px-9 {
  padding-right: 7rem !important;
}

.p-10 {
  padding: 8rem !important;
}

.pt-10, .py-10 {
  padding-top: 8rem !important;
}

.pb-10, .py-10 {
  padding-bottom: 8rem !important;
}

.ps-10, .px-10 {
  padding-left: 8rem !important;
}

.pe-10, .px-10 {
  padding-right: 8rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mt-n10 {
  margin-top: -8rem !important;
}

.mb-n10 {
  margin-bottom: -8rem !important;
}

.ms-n10 {
  margin-left: -8rem !important;
}

.me-n10 {
  margin-right: -8rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.w-xs {
  width: 150px !important;
}

.w-sm {
  width: 200px !important;
}

.w-md {
  width: 250px !important;
}

.w-lg {
  width: 300px !important;
}

.w-xl {
  width: 350px !important;
}

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

.min-w-0 {
  min-width: 0 !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

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

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

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

.square-xs {
  width: 1.5rem !important;
  height: 1.5rem !important;
}

.square-sm {
  width: 2rem !important;
  height: 2rem !important;
}

.square-md {
  width: 2.5rem !important;
  height: 2.5rem !important;
}

.square-lg {
  width: 3rem !important;
  height: 3rem !important;
}

.square-xl {
  width: 4rem !important;
  height: 4rem !important;
}

/*
 * Senternal Hosting Control Panel
 * (c) Senternal LLC <http://www.senternal.com>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */
.d-none {
  display: none !important;
}

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

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

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

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

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

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

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

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

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

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

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

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

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

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

.fw-medium {
  font-weight: 500 !important;
}

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

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

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

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

.font-mono,
.text-mono {
  font-family: ui-monospace, "SF Mono", "Monaco", "Inconsolata", "Fira Mono", "Droid Sans Mono", "Source Code Pro", monospace !important;
  font-feature-settings: "tnum" on;
}

.data-ip,
.data-domain,
.data-version,
.data-code,
.data-timestamp,
.data-id {
  font-family: ui-monospace, "SF Mono", "Monaco", "Inconsolata", "Fira Mono", monospace;
  font-feature-settings: "tnum" on;
  font-size: 0.9em;
  letter-spacing: -0.01em;
}

.tabular-nums {
  font-feature-settings: "tnum" on !important;
  font-variant-numeric: tabular-nums !important;
}

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

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

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

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

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

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

.fs-sm, .small {
  font-size: 0.8375rem !important;
}

.fs-xs {
  font-size: 0.75rem !important;
}

.fs-lg {
  font-size: 1.1406rem !important;
}

.font-size-10 {
  font-size: 10px !important;
}

.font-size-11 {
  font-size: 11px !important;
}

.font-size-12 {
  font-size: 12px !important;
}

.font-size-13 {
  font-size: 13px !important;
}

.font-size-14 {
  font-size: 14px !important;
}

.font-size-15 {
  font-size: 15px !important;
}

.font-size-16 {
  font-size: 16px !important;
}

.font-size-17 {
  font-size: 17px !important;
}

.font-size-18 {
  font-size: 18px !important;
}

.font-size-20 {
  font-size: 20px !important;
}

.font-size-22 {
  font-size: 22px !important;
}

.font-size-24 {
  font-size: 24px !important;
}

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

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

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

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

.border {
  border: 1px solid var(--bs-border-color) !important;
}

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

.border-top {
  border-top: 1px solid var(--bs-border-color) !important;
}

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

.border-end {
  border-right: 1px solid var(--bs-border-color) !important;
}

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

.border-bottom {
  border-bottom: 1px solid var(--bs-border-color) !important;
}

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

.border-start {
  border-left: 1px solid var(--bs-border-color) !important;
}

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

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !important;
}

.rounded {
  border-radius: 4px !important;
}

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

.rounded-1 {
  border-radius: 2px !important;
}

.rounded-2 {
  border-radius: 4px !important;
}

.rounded-3 {
  border-radius: 8px !important;
}

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

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-top {
  border-top-left-radius: 4px !important;
  border-top-right-radius: 4px !important;
}

.rounded-end {
  border-top-right-radius: 4px !important;
  border-bottom-right-radius: 4px !important;
}

.rounded-bottom {
  border-bottom-right-radius: 4px !important;
  border-bottom-left-radius: 4px !important;
}

.rounded-start {
  border-bottom-left-radius: 4px !important;
  border-top-left-radius: 4px !important;
}

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

.shadow-sm {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03) !important;
}

.shadow {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
}

.shadow-lg {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

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

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

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

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

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

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

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

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

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

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

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

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

.cursor-pointer {
  cursor: pointer !important;
}

.cursor-default {
  cursor: default !important;
}

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

.cursor-wait {
  cursor: wait !important;
}

.cursor-move {
  cursor: move !important;
}

.cursor-grab {
  cursor: grab !important;
}

.cursor-grabbing {
  cursor: grabbing !important;
}

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

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

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

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

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

@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
}
.object-fit-contain {
  object-fit: contain !important;
}

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

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

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

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

.z-n1 {
  z-index: -1 !important;
}

.z-0 {
  z-index: 0 !important;
}

.z-1 {
  z-index: 1 !important;
}

.z-2 {
  z-index: 2 !important;
}

.z-3 {
  z-index: 3 !important;
}

.z-dropdown {
  z-index: 1000 !important;
}

.z-sticky {
  z-index: 1020 !important;
}

.z-fixed {
  z-index: 1030 !important;
}

.z-modal-backdrop {
  z-index: 1040 !important;
}

.z-modal {
  z-index: 1050 !important;
}

.z-popover {
  z-index: 1060 !important;
}

.z-tooltip {
  z-index: 1070 !important;
}

.z-toast {
  z-index: 1090 !important;
}

.ratio {
  position: relative;
  width: 100%;
}

.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}

.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

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

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

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

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

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

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

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

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

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

.spin {
  animation: spin 0.5s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=app.output.css.map */
